Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created July 27, 2019 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/6fdf846a4a7c4992c94bc5166bb36553 to your computer and use it in GitHub Desktop.
Save fitomad/6fdf846a4a7c4992c94bc5166bb36553 to your computer and use it in GitHub Desktop.
internal func updateUIView(_ webView: WKWebView, context: Context) -> Void
{
guard let wwdcURL = URL(string: "https://developer.apple.com/wwdc19/") else
{
return
}
let wwdcRequest = URLRequest(url: wwdcURL)
webView.load(wwdcRequest)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment