How To Clear A UIWebView

前端 未结 6 1159
轻奢々
轻奢々 2020-12-05 13:03

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

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-05 13:23

    Swift 4.0 , XCODE 9

    webView.loadRequest(URLRequest.init(url: URL.init(string: "about:blank")!))
    

提交回复
热议问题