एक अलग थ्रेड पर कोड चलाने का सबसे अच्छा तरीका क्या है? क्या यह:
[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];
मैं दूसरा तरीका कर रहा हूं, लेकिन वेस्ले कुकबुक मैं पहले पढ़ रहा था।