LoginSignup
6
2

More than 3 years have passed since last update.

WKWebViewでSPAなサイトの遷移を監視する方法

Posted at

概要

SPAのようなページを構築していてURLを監視したいけどdelegateが呼ばれず検知出来ない

解決法

KVOでWKWebViewのurlプロパティを監視する。

class ViewController: UIViewController{
    var webView: WKWebView
    private var _observers = [NSKeyValueObservation]()
    //中略
    override func viewDidLoad(){
        _observers.append(webview.observe(\.url, options: .new) { _, _ in
            print("URL: \(self.webView.url)")
        })
    }
}

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2