How To Clear A UIWebView

前端 未结 6 1157
轻奢々
轻奢々 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:47

    Same answer in Swift 4.2, xCode 10

    if let clearURL = URL(string: "about:blank") {
       myWebView.loadRequest(URLRequest(url: clearURL))
    }
    

提交回复
热议问题