内存泄漏NSAutoreleasePool

时间:2011-04-23 22:39:05

标签: iphone memory-leaks nsthread nsautoreleasepool

  

可能重复:
  Memory leak 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 :(得分:0)

变量data已经是一个自动释放的内存,由NSData便捷函数创建。如果您没有分配它(通过调用alloc),那么您不必释放它。因此,您无需致电[data release]并且此处没有泄漏。当然,您可以使用Intruments和Leaks工具来验证它。