以下の抜粋では、
/*A ClassName with instanceMethod and ClassMethod */
-(void)instanceMethod;
+(void)ClassMethod;
/*To call a instance method in background */
ClassName class1obj = [ClassName alloc] init];
[class1obj performSelectorInBackground:@selector(instanceMethod) withObject:nil];
同様に、バックグラウンドで ClassMethod を呼び出す方法はperformSelectorInBackground
?
できれば解説お願いします!みんな手をつないでください..