Re: I'm just leaking, darn it...
Re: I'm just leaking, darn it...
- Subject: Re: I'm just leaking, darn it...
- From: Jeff LaMarche <email@hidden>
- Date: Fri, 26 Oct 2001 22:41:46 -0700
On Friday, October 26, 2001, at 10:35 PM, Thomas Deniau wrote:
Le 27/10/01 6:22, Jeff LaMarche disait :
If you are in a separate thread you must at the start of the thread
create
your own autorelease pool :
-(void)threadedMethod
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// Your code ...
[pool release];
}
I have done this, which is why I'm confused about this error message.