次のように NSInvocationOpertion オブジェクトを作成しました
NSString *myString = @"Jai Hanuman";
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(taskMethod) object:myString];
NSOperationQueue *operatioQueue = [[NSOperationQueue alloc] init];
[operatioQueue addOperation:operation];
taskMethod で myString オブジェクトにアクセスする方法を誰か教えてもらえますか? 出来ますか?
- (void)taskMethod{
NSLog(@"Oh! Invocation's working buck");
}