本文實例為大家分享了swift版webview加載網(wǎng)頁展示的具體代碼,供大家參考,具體內(nèi)容如下
比較簡單,直接上代碼
import UIKitimport WebKitimport SnapKitclass CMWebVC:UIViewController, WKNavigationDelegate { var webUrl: String? var webView: WKWebView =WKWebView() var progressView:UIProgressView = UIProgressView() var closeBtn: UIButton! override func initVC() { webView.addObserver(self, forKeyPath:"estimatedProgress", options: NSKeyValueObservingOptions.new, context:nil) webView.navigationDelegate =self } deinit { webView.removeObserver(self, forKeyPath:"estimatedProgress") webView.navigationDelegate =nil } override func viewDidLoad() { super.viewDidLoad() // webview view.addSubview(webView) webView.snp.makeConstraints { (make)in make.width.height.equalToSuperview() } // progressview view.addSubview(progressView) progressView.snp.makeConstraints { (make)in make.width.equalToSuperview() make.height.equalTo(3) make.top.equalToSuperview() } progressView.tintColor =UIColor.ColorBgTheme() progressView.isHidden =true // load url if webUrl !=nil { webView.load(URLRequest(url:URL(string: webUrl!)!)) } // shear self.showRightItem(image:"nav_share") { } } override func viewWillAppear(_ animated:Bool) { super.viewWillAppear(animated) self.closeButton() } override func viewWillDisappear(_ animated:Bool) { self.closeBtn.removeFromSuperview() } func closeButton() { if self.closeBtn ==nil { self.closeBtn =UIButton(frame: CGRect(x:44, y: 0, width:44, height: 44)) self.closeBtn.setTitle("關(guān)閉", for: .normal) self.closeBtn.setTitleColor(UIColor.black, for: .normal) self.closeBtn.addAction({ (button)in self.navigationController!.popViewController(animated:true) }) self.navigationController?.navigationBar.addSubview(self.closeBtn) } } override func observeValue(forKeyPath keyPath:String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) { // 加載進(jìn)度 if keyPath == "estimatedProgress" { let newprogress = change?[.newKey]!as! Float let oldprogress = change?[.oldKey]as? Float ??0.0 //不要讓進(jìn)度條倒著走...有時候goback會出現(xiàn)這種情況 if newprogress < oldprogress { return } if newprogress == 1 { progressView.isHidden =true progressView.setProgress(0, animated:false) } else { progressView.isHidden =false progressView.setProgress(newprogress, animated:true) } } } func webView(_ webView:WKWebView, didFinish navigation: WKNavigation!) { progressView.isHidden =true progressView.setProgress(0, animated:false) } func webView(_ webView:WKWebView, didFail navigation: WKNavigation!, withError error: Error) { progressView.isHidden =true progressView.setProgress(0, animated:false) } override func navigateBack() { if webView.canGoBack { webView.goBack() } else { super.navigateBack() } }}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。
新聞熱點
疑難解答
圖片精選