有个工具类,里面有静态函数
然后本人想在主线程里面通过performSelectorInBackground调用它,
语法要怎么写呢?
然后本人想在主线程里面通过performSelectorInBackground调用它,
语法要怎么写呢?
解决方案:50分
不能直接用就考虑间接用,在本类写一个成员方法,再从这里调用其他类的静态方法。
解决方案:50分
同意楼上的
-(void)ddd
{
[otherClass XXXX];
}
然后
[self performSelectorInBackground:@selector(ddd) withObject:nil];
-(void)ddd
{
[otherClass XXXX];
}
然后
[self performSelectorInBackground:@selector(ddd) withObject:nil];