This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes.
意思就是说我从子线程调用了有关autolayout的访问,所以有可能造成异常崩溃。
之前很少遇到这样的警告,或者就忽视了,今天调用了鹰眼的数据返回后就直接给控件赋值了,我猜是鹰眼调用了异步线程,而返回的时候没有回到主线程引起的。
当然在我收到返回数据之后,也调用了AFN进行网络请求,不过经过测试不是AFN引起的。
具体报错内容:
屏幕快照 2017-07-25 下午1.39.44.png
解决的话就是回主线程赋值就好了
屏幕快照 2017-07-25 下午1.56.58.png
网友评论