关于 StackOverflow 的第一个问题(对于针对 macOS 的原生应用程序开发来说相对较新)。
我目前正在尝试构建一个简单的 SwiftUI 视图,它利用 WKWebView 的 loadHTMLString 函数在屏幕上显示硬编码的 HTML 字符串。
AFAIK webkit 目前不支持 SwiftUI,因此我需要使用 NSViewRepresentable 将 AppKit UI 嵌入到我的 SwiftUI 应用程序中。这是我在文档和 XCode 的自动完成之后得到的:
import SwiftUI
import WebKit
struct HTMLView: NSViewRepresentable {
typealias NSViewType = WKWebView
let html = "<h1>Hello wordl</h1>"
func makeNSView(context: Context) -> WKWebView {
let webview = WKWebView()
return webview
}
func updateNSView(_ nsView: WKWebView, context: Context) {
nsView.loadHTMLString(html, baseURL: nil)
}
}
struct HTMLView_Previews: PreviewProvider {
static var previews: some View {
HTMLView()
}
}
需要注意的是,预览画布不会加载 HTML(显示空窗口)。
然后,我将 ContentView.Swift 中的默认 Text() 视图替换为 HTMLView(),并运行我的应用程序。
应用程序编译,但 WebView 无法加载 HTML(我得到一个空窗口)。我在控制台中收到以下错误:
WebPageProxy::processDidTerminate: (pid 0), reason 3
WebPageProxy::dispatchProcessDidTerminate: reason = 3
WebPageProxy::processDidTerminate: (pid 0), reason 3
WebPageProxy::dispatchProcessDidTerminate: reason = 3
WebPageProxy::tryReloadAfterProcessTermination: process crashed and the client did not handle it, not reloading the page because we reached the maximum number of attempts
任何有关上述内容的帮助将不胜感激!