gpt4 book ai didi

swift版webview加载网页进度条效果

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章swift版webview加载网页进度条效果由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例为大家分享了swift版webview加载网页展示的具体代码,供大家参考,具体内容如下 。

比较简单,直接上代码 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import UIKit
import WebKit
import SnapKit
 
class 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( "关闭" , 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?) {
   // 加载进度
   if keyPath == "estimatedProgress" {
    let newprogress = change?[.newKey]!as! Float
    let oldprogress = change?[.oldKey]as? Float ?? 0.0
   
    //不要让进度条倒着走...有时候goback会出现这种情况
    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()
   }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:http://blog.csdn.net/tiantianios/article/details/78474778 。

最后此篇关于swift版webview加载网页进度条效果的文章就讲到这里了,如果你想了解更多关于swift版webview加载网页进度条效果的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com