私はアプリケーションを実行しようとしているときObjective CのNSThreadと匿名関数
void (^testA)(void) =^
{
NSAutoreleasePool *oPool = [[NSAutoreleasePool alloc] init];
NSLog(@"in threadA",nil);
[oPool release];
};
[NSThread detachNewThreadSelector:@selector(testA) toTarget:testA withObject:nil];
匿名関数でNSThread::detachNewThreadSelector
を使用しようとすると、私はエラーを得た:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSThread initWithTarget:selector:object:]: target does not implement selector (*** -[__NSGlobalBlock__ testA])'
は、誰もがそれを私の手を与えることができます?