Dispatch queues and autorelease pools
Dispatch queues and autorelease pools
- Subject: Dispatch queues and autorelease pools
- From: Stephan Michels <email@hidden>
- Date: Sat, 02 Jul 2011 10:53:24 +0200
Hi,
I have short question. Do I have to use an autorelease pool within a block for
a dispatch queue?
dispatch_async(background_queue(), ^{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSArray *array = [NSArray array];
NSLog(@"array=%@", array);
[pool drain];
});
Or has the dispatch queue it's own pool?
Stephan Michels._______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden