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.

错误原因:在后台线程执行了更新UI的操作。

解决方法:

    dispatch_async(dispatch_get_main_queue(), ^{
        //  updateUI  
    });

你可能感兴趣的:(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.)