对这行代码造成内存泄漏的原因感到困惑:
NSPropertyListFormat format;
NSMutableDictionary *d = [NSPropertyListSerialization propertyListWithData:rawCourseArray options:NSPropertyListMutableContainers format:&format error:NULL];
对修复的任何建议都非常感谢!
此致 乙
答案 0 :(得分:0)
你有没有使用财产?
self.d = [NSPropertyListSerialization propertyListWithData:rawCourseArray options:NSPropertyListMutableContainers format:&format error:NULL];
我也遇到了类似的泄漏并使用属性(即self.d)
解决了它