分离的NSThread内存泄漏

时间:2011-04-23 17:48:42

标签: iphone memory-leaks nsdata nsthread nsautoreleasepool

使用工具我在这个分离线程的方法中有内存泄漏:

-(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];
}

我不明白这个漏洞。

感谢。

1 个答案:

答案 0 :(得分:1)

Kneejerk的可能性,因为该代码中没有内存所有权问题:

  • 如果某人,其他地方保留但未正确释放myTargetImage,那么可能的数据会泄漏,而且Instruments会显示所指示的位置,因为它会报告创建对象的位置,而不是泄漏的位置
  • “在大多数情况下,UIKit类只能从应用程序的主线程中使用。” (source);除非你有特定的权限,UIImage + imageWithData是安全的(我找不到任何东西,但Apple已经很难找到这种细节),那么你所做的事情在技术上是非法的,并且像泄漏这样的功能奇怪不小心。