码迷,mamicode.com
首页 > 编程语言 > 详细

只能在主线程更改界面

时间:2016-09-19 19:32:30      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

问题:

在主线程之外的线程更改界面,会报错: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(), {

   // code here

})

只能在主线程更改界面

标签:

原文地址:http://www.cnblogs.com/argenbarbie/p/5886169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!