Skip to content

Instantly share code, notes, and snippets.

@movii
Created June 27, 2017 01:38
Show Gist options
  • Save movii/c9b049a4b337df15d6bb29b726e05f70 to your computer and use it in GitHub Desktop.
Save movii/c9b049a4b337df15d6bb29b726e05f70 to your computer and use it in GitHub Desktop.
笔记:iOS 与 JavaScript 的交互(一):UIWebView - 2.1 直接使用 string​By​Evaluating​Java​Script(from:​)
func webViewDidStartLoad(_ webView: UIWebView) {
let jsString = "alert('UIWebView Start Loading from local file')"
webviewBrowser.stringByEvaluatingJavaScript(from: jsString)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment