错误原因:在后台线程执行了更新UI的操作。
解决方法:
dispatch_async(dispatch_get_main_queue(), ^{
// updateUI
});
错误原因:在后台线程执行了更新UI的操作。
解决方法:
dispatch_async(dispatch_get_main_queue(), ^{
// updateUI
});
本文标题:This application is modifying th
本文链接:https://www.haomeiwen.com/subject/pttrhxtx.html
网友评论