解决ARC forbids explicit message s

作者: 我是七月 | 来源:发表于2017-09-13 23:43 被阅读137次
    奋斗的七月

    在ios中经常会遇到:ARC forbids explicit message send of 'autorelease' 或[“ARC forbids explicit message send of release”]这样的错误,特别是在引入第三方库的时候会经常遇到。

    原因是项目使用了arc机制,而有些文件禁止使用而报错

    解决方法

    点击项目Target -> 找到"Build Settings" -> 找到"Compile Sources" -> 找到出错的类,在对应类的"Compiler Flags"中添加"-fno-objc-arc"

    奋斗的七月

    相关文章

      网友评论

        本文标题:解决ARC forbids explicit message s

        本文链接:https://www.haomeiwen.com/subject/tfkrsxtx.html