You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling Chameleon in Lion + Xcode 4.1, there are tens of errors like this:
file://localhost/Users/191919/Desktop/cocoa/Chameleon/UIKit/Classes/NSFetchedResultsController.h: error: Parse Issue: Unknown type name '__unsafe_unretained'
The text was updated successfully, but these errors were encountered:
If you use Xcode 4.2 it should work. (They are ARC annotations causing this problem.) In the meantime, you should be able to just #define them away from somewhere global:
#define __unsafe_unretained
#define __bridge
Or just go through the source and delete the instances of those annotations in your branch. Whatever works best for you.
When compiling Chameleon in Lion + Xcode 4.1, there are tens of errors like this:
file://localhost/Users/191919/Desktop/cocoa/Chameleon/UIKit/Classes/NSFetchedResultsController.h: error: Parse Issue: Unknown type name '__unsafe_unretained'
The text was updated successfully, but these errors were encountered: