//添加观察者模式
[self.webView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew context:nil];
#pragma mark - 监听加载进度
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if ([keyPath isEqualToString:@"estimatedProgress"]) {
if (object ==self.webView) {
[_progressView setAlpha:1.0f];
[_progressView setProgress:self.webView.estimatedProgress animated:YES];
if(self.webView.estimatedProgress >=1.0f) {
[UIView animateWithDuration:0.3 delay:0.3 options:UIViewAnimationOptionCurveEaseOut animations:^{
[_progressView setAlpha:0.0f];
} completion:^(BOOL finished) {
[_progressView setProgress:0.0f animated:NO];
}];
}
}
else
{
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
}
}
- (void)dealloc{
[self.webView removeObserver:self forKeyPath:@"estimatedProgress"];
}
iOS WKWebView监听网页加载进度
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- WKWebView的进度条WKWebView的回退上级网页WKWebView的获取网页标题 [获取系统返回按钮的点...
- @property (weak, nonatomic) CALayer *progresslayer;//进度条 ...
- WKWebView是iOS8 WebKit框架下控件,WKWebView 的estimatedProgress是当...
- 一、效果展示 二、主要步骤 1.添加UIProgressView属性 2.初始化progressView 3.添加...
- 一、WKWebView 使用WKWebView替换UIWebView可以大量减少运行内存。用法与UIWebView...