使用WKWebView的時候會出現明明本身作的一些頁面有提示框, 爲何使用別人的頁面提示框老是不顯示, 其實很大部分緣由是由於該提示框是經過JS調用的, 須要實現WKUIDelegate來進行監聽web
// MARK: - WKUIDelegate // 監聽經過JS調用警告框 func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping () -> Void) { let alert = UIAlertController(title: nil, message: message, preferredStyle: .alert) alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { (action) in completionHandler() })) self.present(alert, animated: true, completion: nil) } // 監聽經過JS調用提示框 func webView(_ webView: WKWebView, runJavaScriptConfirmPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping (Bool) -> Void) { let alert = UIAlertController(title: nil, message: message, preferredStyle: .alert) alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { (action) in completionHandler(true) })) alert.addAction(UIAlertAction(title: "Cancel", style: .default, handler: { (action) in completionHandler(false) })) self.present(alert, animated: true, completion: nil) } // 監聽JS調用輸入框 func webView(_ webView: WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: String, defaultText: String?, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping (String?) -> Void) { // 相似上面兩個方法 }
這裏須要注意, completionHandler必定要調用, 不然會出錯!api