我经常使用这段代码让 UI 在调用长时间运行的方法之前完成其业务:
[obj performSelector:@selector(go) withObject:nil afterDelay:0];
但它有什么作用?
我个人的解释一直go
是在下一个运行循环中调用该方法,但那肯定是不对的。
我经常使用这段代码让 UI 在调用长时间运行的方法之前完成其业务:
[obj performSelector:@selector(go) withObject:nil afterDelay:0];
但它有什么作用?
我个人的解释一直go
是在下一个运行循环中调用该方法,但那肯定是不对的。