This application is modifying the autolayout engine from a background thread, which can lead to engi
原因:在线程中进行了UI操作,比如弹出警告框,alloc UI元素。
解决方法:
1,使用GCD在主线程进行UI操作:
dispatch_async(dispatch_get_main_queue(), ^{
//UI 相关的操作
});
2,self.automaticallyAdjustsScrollViewInse
原创
2016-03-24 15:27:28 ·
442 阅读 ·
0 评论