In the below excerpt,
/*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];
Similarly, how to call a ClassMethod in background using performSelectorInBackground?
If possible, please explain!
Please guys join hands ..
Just call
Because Classes are objects themselves, this will work.