[iOS開発]UIWebViewからWKWebViewへ
2231 ワード
UIWebViewはiOS 2からあり、WKWebViewはiOS 8からあり、WKWebViewが不器用なUIWebViewに取って代わることは間違いない.簡単なテストでは、UIWebViewがメモリを消費しすぎ、メモリのピークが誇張されていることがわかります.WKWebViewWebページのロード速度も向上していますが、メモリほど向上していません.
WKWebViewの利点:使用メモリはUIWebViewの1/3~1/4以上のHTML 5をサポートする特性が公式に発表されている60 fpsまでのスクロールリフレッシュ率と、内蔵ジェスチャーSafariと同じJavaScriptエンジンだけがUIWebViewとUIWebViewを14種類に分割し、3つのプロトコル(公式ドキュメントの説明)とは別に使用することが多く、ロードの進捗属性を増やす:
増加ロード進捗属性
WKWebViewの利点:使用メモリはUIWebViewの1/3~1/4以上のHTML 5をサポートする特性が公式に発表されている60 fpsまでのスクロールリフレッシュ率と、内蔵ジェスチャーSafariと同じJavaScriptエンジンだけがUIWebViewとUIWebViewを14種類に分割し、3つのプロトコル(公式ドキュメントの説明)とは別に使用することが多く、ロードの進捗属性を増やす:
estimatedProgress
iOSネットワーク-UIWebView、WKWebViewの使用方法の詳細増加ロード進捗属性
estimatedProgress
をどのように使用するかを説明し、直接コードを入力します.- (void)viewDidLoad {
[super viewDidLoad];
_webView = [[WKWebView alloc] initWithFrame:self.view.bounds];
_webView.UIDelegate = self;
_webView.navigationDelegate = self;
[self.view addSubview:_webView];
_progressView = [[UIProgressView alloc]initWithFrame:CGRectMake(0, 65, CGRectGetWidth(self.view.frame),2)];
[self.view addSubview:_progressView];
[_webView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew| NSKeyValueObservingOptionOld context:nil];
[_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.baidu.com"]]];
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{
NSLog(@" %s,change = %@",__FUNCTION__,change);
if ([keyPath isEqual: @"estimatedProgress"] && object == _webView) {
[self.progressView setAlpha:1.0f];
[self.progressView setProgress:_webView.estimatedProgress animated:YES];
if(_webView.estimatedProgress >= 1.0f)
{
[UIView animateWithDuration:0.3 delay:0.3 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];
}
}
- (void)dealloc {
[_webView removeObserver:self forKeyPath:@"estimatedProgress"];
// if you have set either WKWebView delegate also set these to nil here
[_webView setNavigationDelegate:nil];
[_webView setUIDelegate:nil];
}