Apa cara terbaik untuk menjalankan kode di utas terpisah? Apakah itu:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
Atau:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
Saya telah melakukan cara kedua tetapi Buku Masakan Wesley yang telah saya baca menggunakan yang pertama.