美文网首页iOS
_NSZombie_CFString

_NSZombie_CFString

作者: survivorsfyh | 来源:发表于2022-09-08 14:15 被阅读0次

    自定义属性的时候类型匹配错误导致程序运行 crash

    - [CFString release]: message sent to deallocated instance
    

    例如定义类型 assign

    /** 登录链接*/
    @property (nonatomic, assign) NSString *url;
    

    切换成 strong 即可

    /** 登录链接*/
    @property (nonatomic, strong) NSString *url;
    

    以上便是此次分享的全部内容,希望能对大家有所帮助!

    相关文章

      网友评论

        本文标题:_NSZombie_CFString

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