注意 - 我没有 xamarin 经验,但我知道“window.open()”js 如何在 WKWebView 中使用本机代码工作,所以我希望这个答案能帮助您连接缺失的点。
首先,在您配置网络视图的位置设置 UIDelegate ..(在您的情况下为 viewDidLoad)
webView.uiDelegate = self
其次,实现UIDelegate的这个协议方法。这个想法是动态创建一个 web 视图和一个动态视图控制器,并呈现/推送它并将这个 web 视图实例返回给 WebKit,以便它可以建立与父 web 视图的链接并加载 url(window.xml 的第一个参数)。公开电话)。
func webView(_ webView: WKWebView, createWebViewWith configuration: WKWebViewConfiguration, for navigationAction: WKNavigationAction, windowFeatures: WKWindowFeatures) -> WKWebView? {
let childWebView = WKWebView(frame: .zero, configuration: configuration) // Must use the configuration provided by this method
let webViewController = ViewController() // create an instance of a new view controller that you want to push or present with a web view
webViewController.webView = childWebView // provide this new child web view to view controller for layout purpose
navigationController?.pushViewController(webViewController, animated: true)
return childWebView
}