Swift version: 5.6
If you want to generate HTML locally and show it inside your app, it's easy to do in both UIWebView
and WKWebView
. First, here's the code for UIWebView
:
let webView1 = UIWebView()
webView1.loadHTMLString("<html><body><p>Hello!</p></body></html>", baseURL: nil)
And now here's the code for WKWebView
:
let webView2 = WKWebView()
webView2.loadHTMLString("<html><body><p>Hello!</p></body></html>", baseURL: nil)
If you want to load resources from a particular place, such as JavaScript and CSS files, you can set the baseURL
parameter to any URL
. This could, for example, be the resource path for your app bundle, which would allow you to use local images and other assets alongside your generated HTML.
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS 2.0 – see Hacking with Swift tutorial 7
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.