iOSにおいてWKWebViewのWeChatの読み込み進捗バー
本論文の実例では、WKWebViewのWebViewのWeChatのローディング・プログレス・バーの具体的なコードを共有します。参考にしてください。具体的な内容は以下の通りです。
WKWebViewにはestitmatied Progress属性が付加されています。この属性を利用してUProgress Viewを設定できます。
githubコード倉庫に保管されているDemo
ページにUProgress Viewのプロパティを追加します。
WKWebViewにはestitmatied Progress属性が付加されています。この属性を利用してUProgress Viewを設定できます。
githubコード倉庫に保管されているDemo
ページにUProgress Viewのプロパティを追加します。
@property (nonatomic, strong) WKWebView *mywebView;
@property (nonatomic, strong) UIProgressView *progressView;//
怠惰にUProgress Viewをロードします。
-(UIProgressView *)progressView{
if (!_progressView) {
_progressView = [[UIProgressView alloc]
initWithProgressViewStyle:UIProgressViewStyleDefault];
_progressView.frame = CGRectMake(0, 64, screen_width, 5);
[_progressView setTrackTintColor:[UIColor colorWithRed:240.0/255
green:240.0/255
blue:240.0/255
alpha:1.0]];
_progressView.progressTintColor = [UIColor greenColor];
}
return _progressView;
}
WKWebViewを初期化する時(私は怠惰にロードする時)kvoに監視カメラを追加します。
[_mywebView addObserver:self
forKeyPath:NSStringFromSelector(@selector(estimatedProgress))
options:0
context:nil];
ページの読み込み開始時に、進捗バーを隠します。
//
-(void)webView:(WKWebView *)webView
didStartProvisionalNavigation:(WKNavigation *)navigation{
// ,
self.progressView.hidden = NO;
}
kvo監査進捗
//kvo
-(void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary<NSKeyValueChangeKey,id> *)change
context:(void *)context{
if ([keyPath isEqualToString:NSStringFromSelector(@selector(estimatedProgress))]
&& object == self.mywebView) {
[self.progressView setAlpha:1.0f];
BOOL animated = self.mywebView.estimatedProgress > self.progressView.progress;
[self.progressView setProgress:self.mywebView.estimatedProgress
animated:animated];
if (self.mywebView.estimatedProgress >= 1.0f) {
[UIView animateWithDuration:0.3f
delay:0.3f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
[self.progressView setAlpha:0.0f];
}
completion:^(BOOL finished) {
[self.progressView setProgress:0.0f animated:NO];
}];
}
}else{
[super observeValueForKeyPath:keyPath
ofObject:object
change:change
context:context];
}
}
deallocメソッドに傍受を削除します。
-(void)dealloc{
[self.mywebView removeObserver:self
forKeyPath:NSStringFromSelector(@selector(estimatedProgress))];
}
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。