我遇到这个错误很多在我的OS X使用swift:
“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.”
我有一个我的NSWindow,我正在交换窗口的contentView的视图。我得到的错误,当我尝试,并在窗口上做一个NSApp.beginSheet,或当我添加一个子视图到窗口。试图禁用自动调整大小的东西,我没有什么使用自动布局。有什么想法吗?
有时它很好,没有发生,其他时候,它完全打破了我的UI,没有负载
好吧 – 找到答案。它需要放置在一个不同的线程,允许UI更新一旦执行线程函数完成:
原文链接:https://www.f2er.com/swift/321864.htmlSwift版本
dispatch_async(dispatch_get_main_queue(){ // code here })
Objective-C版本
dispatch_async(dispatch_get_main_queue(),^{ // code here });