を使用してバックグラウンドで、コールクラスメソッド以下の抜粋ではObjective Cの
/*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];
同様に、どのようにperformSelectorInBackground
を使用してバックグラウンドでです。ClassMethodを呼び出すには?
可能であれば、説明してください! してください人は
魔法のように! – itechnician