0

在分析下面的代码时遇到问题:

NSDate *formatterDate = [inputFormatter dateFromString:smBook.time_limit];
formatterDate = [formatterDate initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];

消息是: 调用者此时不拥有的对象的引用计数不正确递减。

谁能告诉我为什么?

4

2 回答 2

1

更改以下行:

formatterDate = [formatterDate initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];

用这条线:

NSDate *newDate = [[NSDate alloc] initWithTimeInterval:1*24*60*60 sinceDate:formatterDate];

完成操作后释放此 newDate。

于 2012-06-27T10:16:34.423 回答
0

似乎上述行中没有出现消息,请检查整个类或从项目的编辑方案中启用僵尸对象

于 2012-06-27T10:18:03.003 回答