在系统升级到 iOS 17 后,原本正常的 SwiftUI 代码在运行时突然发生崩溃,提示如下信息:
com.apple.SwiftUI.AsyncRenderer (17): “Modifications to the layout engine must not be performed from a background thread after it has been accessed from the main thread.”
这是怎么回事呢?
通过上面出错信息,大家可能认为这只是一个常见的“从后台线程更改界面”的错误,但其实它绝没这么简单。因为从 App 中压根找不到后台线程对界面“指手画脚”的任何代码!
它实际和 iOS 17 中一个重大更新有着千丝万缕的关系!
闲言少叙,Let‘s fix it!!!??
在检查源代码之前,让我们先来仔细分析一下这个“奇怪的”崩溃: