我需要将可访问性焦点移动到屏幕上的某个元素。在 UIKit 中,我们可以简单地做UIAccessibility.post(.screenChanged, element)
但是,当我使用 SwiftUI 视图执行此操作时,应用程序在控制台中崩溃并显示以下消息
This class '__SwiftValue' is not a known serializable element and returning it as an accessibility element may lead to crashes
知道如何在 SwiftUI 中将焦点移到屏幕上的某些元素上吗?