程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> iphone-objective中在背景調用類方法

iphone-objective中在背景調用類方法

編輯:編程綜合問答
objective中在背景調用類方法

在下面這段摘錄代碼中:

/*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?

最佳回答:


類本身就是對象,所以只要調用:

[ClassName performSelectorInBackground:@selector(ClassMethod) withObject:nil];

應該就可以

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved