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 (Cocoa-dev@lists.apple.com) 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: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com