当前位置: 代码迷 >> 综合 >> This application is modifying the autolayout engine from a background thread after the engine was ac
  详细解决方案

This application is modifying the autolayout engine from a background thread after the engine was ac

热度:55   发布时间:2024-01-22 04:38:08.0

一、
1.错误原因:
UI操作未在主线程中更新,导致可能崩溃。

2.解决方案:
查找是否有UI操作不是在主线程中执行的(注意block不是在主线程中执行的),如果有要放到主线程中执行。

二、
1.错误原因:
通知不是在主线程中发送的,而通知最后执行的操作实在主线程中执行的。

2.解决方案:
发送通知时,需要在主线程中发送。

  相关解决方案