作者:手机用户2502941301 | 来源:互联网 | 2023-09-24 10:47
CustomschemeURL在WKWebView中默认是不支持的 (但Safari可以).
Custom scheme URL 在WKWebView中默认是不支持的 (但Safari可以).
我们可以通过NSError来进行一些处理从而使得程序可以正常跳转:
func webView(webView: WKWebView, didFailNavigation navigation: WKNavigation!, withError error: NSError) {
handleError(error)
func webView(webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: NSError) {
handleError(error)
func handleError(error: NSError) {
if let failingUrl = error.userInfo["NSErrorFailingURLStringKey"] as? String {
if let url = NSURL(string: failingUrl) {
let didOpen = UIApplication.sharedApplication().openURL(url)
if didOpen {
print("openURL succeeded")
return
}
}
}
Note: 在iOS9中,如果你要想使用canOpenURL, 你必须添加URL schemes到Info.plist中的白名单, 否则一样跳转不了...