_NSZombie_CFString

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

- [CFString release]: message sent to deallocated instance

例如定义类型 assign

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

切换成 strong 即可

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

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

你可能感兴趣的:(_NSZombie_CFString)