我正在尝试将 XMPP 框架中的附加 ampp 类文件 XMPPubSub 类集成到我的应用程序中。它说我们必须为这些文件启用 ARC。
我在 Build Phases-> Compile Sources 中针对文件添加了 -fobjc-arc 标志。该类中有此代码
#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif
即使那样我也得到这个错误
cc1obj: error: unrecognized command line option "-fobjc-arc"
我已经看过这些链接
但还没有运气。我在这里错过了什么吗?
请给一些建议