Skip to content

Instantly share code, notes, and snippets.

@pokk
Last active December 16, 2016 07:44
Show Gist options
  • Save pokk/6ae2dba60eff02f6c19f5be881fbdc27 to your computer and use it in GitHub Desktop.
Save pokk/6ae2dba60eff02f6c19f5be881fbdc27 to your computer and use it in GitHub Desktop.
Add the user agent in your WKWebView.

Introduction

Add the user agent in your WKWebView.

self.wkwvTantra!.evaluateJavaScript("navigator.userAgent") { res, error in
if let userAgent = res as? String {
self.wkwvTantra!.customUserAgent = userAgent + " XXX"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment