Jaki jest najlepszy sposób uruchamiania kodu w oddzielnym wątku? Czy to:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
Lub:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
Robiłem drugi sposób, ale książka Wesley Cookbook, którą czytałem, używa pierwszego.