I am trying to use the chameleon framework ( https://github.com/BigZaphod/Chameleon ) to use iOS UI elements in OSX.
For me to do this, I've to use:
[kitView launchApplicationWithDelegate:delegate afterDelay:1];
But probably since the framework is made for non-arc, I am getting the error:
**ARC Semantic Issue:** Receiver type "UIKitView" for instant message is a
forward declaration.
Anyone any ideas how to solve this problem?
Thanks in advance.