在Propertylist序列化中的内存泄漏

时间:2010-08-05 13:08:08

标签: iphone objective-c memory

现在是时候提问了。到现在为止,我只是忽略了内存泄漏。但现在要找出哪个对象会导致这种泄漏。  我有以下代码:

 NSDictionary *addressDic = [[NSDictionary alloc] initWithDictionary:[NSPropertyListSerialization propertyListFromData:plistData mutabilityOption:NSPropertyListImmutable format:&format errorDescription:&anError]];

稍后我也会发布addressDic。 如果我使用Instruments检测内存泄漏,我会在上面的代码中找到一个。我泄漏了大约16个字节,对象类型是NSCFString。为什么呢?

我希望你能帮助我。

桑德罗

1 个答案:

答案 0 :(得分:0)

如果出现错误,您需要-release anError变量。