I am trying to add AQXMLParser to my app, and among other issues that I am having with trying to set it up there are several errors relating to my question title.
The current deployment target does not support automated __weak refrences
I was wondering wether someone has experienced this problem before.
This is what lines they are on in the AQXMLParser.h file:
id __weak _delegate;
id<AQXMLParserProgressDelegate> __weak _progressDelegate;
@property (nonatomic, assign) id __weak delegate;
@property (nonatomic, assign) id<AQXMLParserProgressDelegate> __weak progressDelegate;
__weak won’t work on iOS 4.x and earlier. It looks like AQXMLParser is either designed for GC (on Mac) or, more likely, ARC (on iOS5+).