osx – 获取“此应用程序正在修改自动布局引擎”错误?

前端之家收集整理的这篇文章主要介绍了osx – 获取“此应用程序正在修改自动布局引擎”错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我遇到这个错误很多在我的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更新一旦执行线程函数完成:

Swift版本

dispatch_async(dispatch_get_main_queue(){
    // code here
})

Objective-C版本

dispatch_async(dispatch_get_main_queue(),^{
    // code here
});
原文链接:https://www.f2er.com/swift/321864.html

猜你在找的Swift相关文章