タグ

ブックマーク / qiita.com/hirothings (1)

  • WKWebviewで簡単なwebViewを作成する - Qiita

    WKWebviewとは UIWebviewよりも処理が高速かつ、JSのレンダリング周りの処理が安定している。 iOS8以降から使用可能。 googleChromeのiOSアプリもWKWebviewを使用している Appleの公式ドキュメントにも For new development, employ this class instead of the older UIWebView class. とあるので、デフォでこのClassを使う。 1. 宣言 WKWebViewのインスタンスを作成します。 WKWebViewのデリゲートを指定 ※ WKNavigationDelegateのプロトコルをClassに指定することを忘れないように class WebViewController: UIViewController, WKNavigationDelegate { ・ ・ webview =

    WKWebviewで簡単なwebViewを作成する - Qiita
  • 1