gpt4 book ai didi

swiftui - WKView 内容不显示在 NSViewRepresentable 中

转载 作者:行者123 更新时间:2023-12-04 16:01:12 26 4
gpt4 key购买 nike

当我将 WKWebView 放入 NSViewRepresentable 时遇到问题,然后我的应用显示黑屏而不是加载的网页。

import SwiftUI
import WebKit

struct TestView : NSViewRepresentable {
func makeNSView(context: Context) -> WKWebView {
let view = WKWebView()
if let url = URL(string: "https://www.google.com/") {
view.load(URLRequest(url: url))
}
return view
}

func updateNSView(_ view: WKWebView, context: Context) {
}

}


struct ContentView: View {
var body: some View {
TestView()
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
}


struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}

enter image description here

最佳答案

在 macOS 上不要监督的一件事是在 App Sandbox 选项中打开“传出连接”。

enter image description here

当然,“允许任意负载”也可以启用。

enter image description here

如果您想更进一步,您应该考虑实现 LuLuGaGa 中提到的协调器。

关于swiftui - WKView 内容不显示在 NSViewRepresentable 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58175073/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com