Qual é a melhor maneira de executar código em um thread separado? É isso:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
Ou:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
Tenho feito da segunda maneira, mas o Wesley Cookbook que tenho lido usa a primeira.