Який найкращий спосіб запустити код на окремому потоці? Є це:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
Або:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
Я робив другий спосіб, але книга Кулінарії Уеслі, яку я читав, використовує перший.