我目前正在尝试将aqxmlparser添加到我的ios项目中,并且已经完成了他们已经解释过的github目录中的所有内容,但是我收到了上面列出的错误。
property attributes 'assign' and 'weak' are mutually exclusive
这就是发生错误的地方
·H
//..
id<AQXMLParserProgressDelegate> __weak _progressDelegate;
//..
@property (nonatomic, assign) id __weak delegate;
@property (nonatomic, assign) id<AQXMLParserProgressDelegate> __weak progressDelegate;
//..