별도의 스레드에서 코드를 실행하는 가장 좋은 방법은 무엇입니까? 그것은 :
[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];
나는 두 번째 방법을 사용했지만 내가 읽은 Wesley Cookbook은 첫 번째 방법을 사용합니다.