我正在使用WKWebview开发简单的Web浏览器。 我可以通过自定义Javascript检测网址如trello更改的网址。
这种方式在放大器页面中不起作用。 (Google的加速移动页面)
我尝试将print("webView.url")
放到所有WKNavigationDelegate
函数中
但我无法检测到amp page url
的变化。
但是webView
有放大器页面网址,我想将放大器页面网址保存到本地商店。
答案 0 :(得分:11)
同样的问题。不幸的是,WKWebView仅在发生整页加载时触发其功能。
所以我们要做的就是在WebKit.url属性上使用Key Value Observing。
看起来像这样:
import AVFoundation
import UIKit
import WebKit
import MediaPlayer
class ViewController: UIViewController, WKNavigationDelegate {
@IBOutlet weak var webView: WKWebView!
override func viewDidLoad() {
super.viewDidLoad()
webView.navigationDelegate = self
self.webView.addObserver(self, forKeyPath: "URL", options: .new, context: nil)
self.webView.addObserver(self, forKeyPath: "estimatedProgress", options: .new, context: nil)
self.webView.load(URLRequest(url: "https://google.com"))
}
override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
if keyPath == #keyPath(WKWebView.url) {
print("### URL:", self.webView.url!)
}
if keyPath == #keyPath(WKWebView.estimatedProgress) {
// When page load finishes. Should work on each page reload.
if (self.webView.estimatedProgress == 1) {
print("### EP:", self.webView.estimatedProgress)
}
}
}
wkWebkitView中的每个附加导航都应该导致“### URL”和“### EP”的新组合触发。