NSMutableDictionary 的内存泄漏
困惑为什么这行代码导致内存泄漏:
NSPropertyListFormat format;
NSMutableDictionary *d = [NSPropertyListSerialization propertyListWithData:rawCourseArray options:NSPropertyListMutableContainers format:&format error:NULL];
非常感谢任何有关修复的建议!
问候, 乙
Confused to why this line of code is causing a memory leak:
NSPropertyListFormat format;
NSMutableDictionary *d = [NSPropertyListSerialization propertyListWithData:rawCourseArray options:NSPropertyListMutableContainers format:&format error:NULL];
Any suggestions on a fix is much appreciated!
Regards,
B
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你用过财产吗?
我也遇到了类似的泄漏,并使用属性(即 self.d)解决了它
Did you use property?
I alos encountered the similar leak an resolved it using property (i.e. self.d)