您的位置:首页 > 移动开发

iOS 错误信息 This application is modifying the autolayout engine from a background thread...

2015-12-10 17:30 525 查看
遇到这个错误:

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.

我们可以进行如下的处理:

dispatch_async(dispatch_get_main_queue(), ^{
[_tableview reloadData];
});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: