Kodu ayrı bir iş parçacığı üzerinde çalıştırmanın en iyi yolu nedir? Bu mu:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
Veya:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
Ben ikinci yolu yapıyorum ama okuduğum Wesley Yemek Kitabı ilkini kullanıyor.