Swift WebView Load HTML

let webView1 = UIWebView()
webView1.loadHTMLString("<html><body><p>Hello!</p></body></html>", baseURL: nil)
Aris G