別のスレッドでコードを実行する最良の方法は何ですか?それは...ですか:
[NSThread detachNewThreadSelector: @selector(doStuff) toTarget:self withObject:NULL];
または:
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(doStuff:)
object:nil;
[queue addOperation:operation];
[operation release];
[queue release];
私は2番目の方法を行っていますが、私が読んでいるウェズリークックブックでは最初の方法を使用しています。