我正在尝试将AQXMLParser添加到我的应用程序中,以及我尝试设置它时遇到的其他问题还有一些与我的问题标题有关的错误。
The current deployment target does not support automated __weak refrences
我想知道以前有人遇到过这个问题。
这是他们在AQXMLParser.h文件中的行:
id __weak _delegate;
id<AQXMLParserProgressDelegate> __weak _progressDelegate;
@property (nonatomic, assign) id __weak delegate;
@property (nonatomic, assign) id<AQXMLParserProgressDelegate> __weak progressDelegate;
答案 0 :(得分:1)
__ weak将无法在iOS 4.x及更早版本上运行。看起来AQXMLParser可以设计用于GC(在Mac上),或者更可能是ARC(在iOS5 +上)。