我正在构建一个iPhone应用程序,我在其中分离一些线程以在后台执行长时间运行的工作,以免挂起UI.我知道线程需要NSAutoreleasePool实例进行内存管理.我不确定的是,如果thread方法调用另一个方法 - 该方法是否还需要NSAutoreleasePool?
示例代码:
- (void)primaryMethod { [self performSelectorInBackground:@selector(threadedMethod) withObject:nil]; } - (void)threadedMethod { NSAutoreleasePool *aPool = [[NSAutoreleasePool alloc] init]; // Some code here [self anotherMethod]; // Maybe more code here [aPool drain]; } - (void)anotherMethod { // More code here }
我问的原因是我收到错误,对象正在自动释放,没有池,并且"只是泄漏".
我已经看到其他问题,人们根本没有自动释放池,我理解为什么需要自动释放池.我特别感兴趣的是找出在(在这个例子中)创建的自动释放池是否threadedMethod
适用于在其中创建的对象anotherMethod
.
要回答你的问题,是的,anotherMethod正在使用你在threadedMethod中创建的NSAutoreleasePool,并且当aPool被释放/耗尽时,你自动释放的任何内容都将被释放.
因此,您的错误不可能直接来自此代码(除非有更多内容).
在_NSAutoreleaseNoPool上设置一个断点(在Breakpoints窗口中按名称添加它)并在调试器中运行代码,当没有池调用autorelease时它将停止,这应该可以解决您的问题.