使用工具,我在分离线程的这个方法中得到了内存泄漏:
-(void)goToThisUrl:(id) targetUrl
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
if (someCondition) {
// Doing some stuff here
}
// Instruments show memory leak on data
else {
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString: targetUrl]];
myTargetImage = [UIImage imageWithData:data];
// When releasing data(because data retainCount = 2), i got:
// Incorrect decrement of the reference count of an object that is not owned at this point by the caller
//[data release];
}
[pool release];
}
我不明白这个漏洞。
谢谢。
考虑到代码中没有内存所有权问题,条件反射的可能性:
- 如果有人,在其他地方保留,但没有正确释放myTargetImage,那么数据可能会泄露,仪器将显示您所指示的位置,因为它报告对象创建的位置,而不是它泄露的位置
- "大多数情况下,UIKit类应该只在应用程序的主线程中使用。"(源);除非你有特定的权威,UIImage +imageWithData是安全的(我找不到任何,但苹果已经使这种细节很难找到),那么你所做的在技术上是非法的,像泄漏这样的功能奇怪不应该是一个惊喜。