我有一些基本的疑问,猜想有人会帮助我。
请参考这个问题:下载文件时立即更新 ULabel
我试过使用performSelectorOnMainThread
,它在另一个类中调用 updateProgress 方法,但标签没有更新。
但现在我已经使用了类似的通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"updateProgress" object:nil userInfo:nil];
这似乎正在调用该方法并更新 UILabel。即使我的问题解决了,我想知道为什么上面performSelectorOnMainThread
的方法对我不起作用?有什么具体原因吗?