Каков наилучший способ запуска кода в отдельном потоке? Это:
[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];
Я делал второй путь, но Cookie Wesley, который я читал, использует первый.