在下面的摘录中,
/*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
?
如果可能,请解释一下!请大伙儿牵手..