Assigning to 'id" from incompatible type “abc * const_strong"

上的文章已经不再维护,有兴趣阅读其他文章,或一起交流的朋友,请移步 我的博客:punmy.cn

原文


实现委托协议时,出现警告
Assigning to 'id" from incompatible type “abc * const_strong"

  • 如果在本类中实现代理协议,也就是delegate = self,那么
    在实现协议的** .m**文件中(不公开),
    将接口的
    @interface abc ()
    改为
    @interface abc ()

  • 如果在其他类中实现代理协议,也就是delegate = abc,那么
    在实现协议的 Abc.h文件中(公开),
    将接口的
    @interface abc ()
    改为
    @interface abc ()

警告Assigning to 'id" from incompatible type “abc * const_strong"就会消失。

你可能感兴趣的:(Assigning to 'id" from incompatible type “abc * const_strong")