我正在尝试为使用 SwiftUI 2.0 编写的 iOS 14.0 应用程序添加硬件键盘支持。我看到了一些使用 UIHostingController 的示例,所以我想在 iOS14/SWiftui 2.0 上使用 WindowGroup 尝试这种方式。
在 XCODE 12.3 中编译时出现错误“通用结构‘WindowGroup’要求‘KeyTestController’符合‘视图’ ”
ContentView() 符合 View 并且在不使用“KeyTestController”类时一切正常。
有什么办法可以解决这个问题?
非常感谢。
import SwiftUI
import StoreKit
import UIKit
@main
struct myApp: App
{
var body: some Scene
{
WindowGroup
{
KeyTestController(rootView:ContentView())
}
}
}
class KeyTestController<Content>: UIHostingController<Content> where Content: View
{
/* CODE …… */
}