1

困惑为什么这行代码会导致内存泄漏:

NSPropertyListFormat format;
NSMutableDictionary *d = [NSPropertyListSerialization propertyListWithData:rawCourseArray options:NSPropertyListMutableContainers format:&format error:NULL];

非常感谢任何有关修复的建议!

问候,乙

4

1 回答 1

0

你用过财产吗?

self.d = [NSPropertyListSerialization propertyListWithData:rawCourseArray options:NSPropertyListMutableContainers format:&format error:NULL];

我也遇到了类似的泄漏,并使用属性(即 self.d)解决了它

于 2011-03-29T07:39:44.880 回答