¿Cuál es la mejor manera de ejecutar código en un hilo separado? Lo es:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
O:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
He estado haciendo la segunda forma, pero el libro de cocina de Wesley que he estado leyendo usa la primera.