iOS Error

2018-11-28  本文已影响0人  Leafmure

离开页面后,网络请求使用 delegate 回调崩溃

原因:用的是 assgin 修饰 delegate,像数值类型一样 delegate对象被销毁了但不置 nil。

解决方案:

This application is modifying the autolayout engin from a background thread

原因:未回主线程刷新UI

解决方案:

dispatch_async(dispatch_get_main_queue(), ^{
    // 有关UI的操作
});
上一篇下一篇

猜你喜欢

热点阅读