WKWebView
でタップされたリンクのURLを取得したい。リンクは、アプリで特定のアクションをトリガーするカスタム形式です。例えばhttp://my-site/help#deeplink-intercom
。私は次のようにKVO
を使用しています:
override func loadView() {
let webConfiguration = WKWebViewConfiguration()
webView = WKWebView(frame: .zero, configuration: webConfiguration)
webView.navigationDelegate = self
webView.addObserver(self, forKeyPath: "URL", options: .new, context: nil)
view = webView
}
override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
if let newValue = change?[.newKey] {
print("url changed: \(newValue)")
}
print("Did tap!!")
}
これは、リンクを初めてタップしたときにうまく機能します。ただし、同じリンクを2回続けてタップすると、リンクのタップは報告されません(明らかに、実際の値が変更されていないため)。すべてのタップを検出してリンクを取得できるように、これを修正するための回避策はありますか?これに関するどんなポインタも素晴らしいでしょう!ありがとう!
addObserver
をこのように変更します
webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil)
observeValue
関数では、両方の値を取得できます
override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
if let newValue = change?[.newKey] as? Int, let oldValue = change?[.oldKey] as? Int, newValue != oldValue {
//Value Changed
print(change?[.newKey])
}else{
//Value not Changed
print(change?[.oldKey])
}
}
WKWebViewデリゲートメソッドを使用できます。そして、webviewデリゲートをselfに設定することを忘れないでください:webview.navigationDelegate = self
func webView(webView: WKWebView, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: ((WKNavigationActionPolicy) -> Void)) {
switch navigationAction.navigationType {
case .LinkActivated:
if navigationAction.targetFrame == nil {
self.webView?.loadRequest(navigationAction.request)// It will load that link in same WKWebView
}
default:
break
}
if let url = navigationAction.request.URL {
print(url.absoluteString) // It will give the selected link URL
}
decisionHandler(.Allow)
}
Swift 5.
WKWebViewインスタンスでnavigationDelegateを設定することを忘れないでください。
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
print(String(describing: navigationAction))
decisionHandler(.allow)
}