I am very new to the whole programming business, and was wondering if there is any way to clear the contents of a UIWebView in iphone programming, so that the l
UIWebView
Same answer in Swift 4.2, xCode 10
if let clearURL = URL(string: "about:blank") { myWebView.loadRequest(URLRequest(url: clearURL)) }