This application is modifying the autolayout engine from a background thread, which can lead to engi

来源:互联网 发布:法兰克加工中心编程 编辑:程序博客网 时间:2024/05/17 06:27

警告提示:This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird crashes. This will cause an exception in a future release.

错误原因:在回调函数中或者后台线程中更新了UI界面,而UI界面必须是在主界面中才能进行修改

解决办法:

dispatch_async(dispatch_get_main_queue(), ^{

     代码

});

0 0
原创粉丝点击