在分析下面的代码时遇到问题:
NSDate *formatterDate = [inputFormatter dateFromString:smBook.time_limit];
formatterDate = [formatterDate initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];
消息是: 调用者此时不拥有的对象的引用计数不正确递减。
谁能告诉我为什么?
在分析下面的代码时遇到问题:
NSDate *formatterDate = [inputFormatter dateFromString:smBook.time_limit];
formatterDate = [formatterDate initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];
消息是: 调用者此时不拥有的对象的引用计数不正确递减。
谁能告诉我为什么?
更改以下行:
formatterDate = [formatterDate initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];
用这条线:
NSDate *newDate = [[NSDate alloc] initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];
完成操作后释放此 newDate。
似乎上述行中没有出现消息,请检查整个类或从项目的编辑方案中启用僵尸对象