This application is modifying th
2017-07-07 本文已影响19人
迷路的安然和无恙
错误原因:在后台线程执行了更新UI的操作。
解决方法:
dispatch_async(dispatch_get_main_queue(), ^{
// updateUI
});
错误原因:在后台线程执行了更新UI的操作。
解决方法:
dispatch_async(dispatch_get_main_queue(), ^{
// updateUI
});