内存泄漏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];
}

谢谢

以上均无泄漏。可能在您删除并替换为"someCondition"one_answers"Doing some stuff here"的部分中有一个或多个泄漏,但是这里没有人可以帮助解决这个问题,除非您发布完整的代码,您真正使用Instruments进行测试。

还有:"//当释放数据时(因为数据retainCount = 2)…"停止。正确的。在那里。忽略retainCount。释放对象是因为您使用暗示所有权的方法创建了它,或者是因为您保留了它。永远不要因为一个对象的retainCount有一个你不期望或不理解的值而释放它。详细信息请阅读Apple的内存管理编程指南。

首先,你不能在第二个线程中分配UIImage。UIKit的使用需要在主线程上。我假设您想通过创建另一个线程来调用dataWithContentsOfURL,而不阻塞主线程。但是,这不是正确的方法。相反,使用NSURLConnection和一个在下载完成时被调用的异步回调。苹果已经提供了一个内置的"下载"线程,NSURLConnection在后台使用这个线程。因此,您创建另一个线程来下载的方法是没有意义的。

相关内容

  • 没有找到相关文章

最新更新