iOS WKWebView 获得title和加载进度

1、前言

iOS8后,苹果推出了新框架Webkit,提供了替换UIWebView的组件WKWebView,相比于UIWebView,好处多多,速度更快了,占用内存少了。

2、基本使用

使用方法和UIWebView大同小异,具体使用可以参考使用WKWebView替换UIWebView,这篇文章讲的挺详细了,这不是我们本篇的重点,我们的重点是讲下怎么页面title和加载进度值。

注意:使用时记得导入WebKit.framework框架

3、获得页面title和加载进度值(基于系统KVO)

//导入框架
#import <WebKit/WebKit.h>
/*********/
@property (nonatomic, strong) WKWebView *mWebView;//webView
@property (nonatomic, strong) UIProgressView *mProgressView;//进度条
/*********/
- (void)viewDidLoad {
  [super viewDidLoad];
  [self initWebView];
}
  //增加kvo监听,获得页面title和加载进度值
- (void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    [self.mWebView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew context:NULL];
    [self.mWebView addObserver:self forKeyPath:@"title" options:NSKeyValueObservingOptionNew context:NULL];
}
//KVO 一定要移除,要不然会崩溃
- (void)dealloc{
    [self.mWebView removeObserver:self forKeyPath:@"estimatedProgress"];
    [self.mWebView removeObserver:self forKeyPath:@"title"];
}

- (void)initWebView
{
    _mWebView = [[WKWebView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight - TopFullHeight)];
    [_mWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http:xxxxx"]]];
    [self.view addSubview:_mWebView];

    //进度条添加到navigationBar
    CGFloat progressBarHeight = 2.0f;
    CGRect navigationBarBounds = self.navigationController.navigationBar.bounds;
    CGRect barFrame = CGRectMake(0, navigationBarBounds.size.height - progressBarHeight, navigationBarBounds.size.width, progressBarHeight);
    _mProgressView = [[UIProgressView alloc] initWithFrame:barFrame];
    _mProgressView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin;
    _mProgressView.progressTintColor = [UIColor greenColor];
    [self.navigationController.navigationBar addSubview:_mProgressView];
}

#pragma mark KVO的监听代理
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {

    //加载进度值
    if ([keyPath isEqualToString:@"estimatedProgress"]){
        if (object == self.mWebView){
            self.mProgressView.alpha = 1;
            [self.mProgressView setProgress:self.mWebView.estimatedProgress animated:YES];
            if(self.mWebView.estimatedProgress >= 1.0f)
            {
                [UIView animateWithDuration:0.5 animations:^{
                    self.mProgressView.alpha = 0;
                } completion:^(BOOL finished) {
                     [self.mProgressView setProgress:0.0f animated:NO];
                }];
            }
        }else{
            [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
        }
    }else if ([keyPath isEqualToString:@"title"]){//网页title
        if (object == self.mWebView){
            self.navigationItem.title = self.mWebView.title;
        }else{
            [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
        }
    }else{
        [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
    }
}

至此,加载标题和进度值完成,try。

4、基于 KVOController

KVOController是facebook开源的一个KVO框架,使用方便,好处多多,我就是因为侧滑返回偶尔导致系统KVO没有释放,最后程序崩溃了,所以这里建议使用这个框架,使用代码入下

#import "FBKVOController.h"
@property (nonatomic, strong) FBKVOController *kvoController;

- (void)initFBKVO{

    //KVO
    __weak typeof (self) weakSelf = self;
    self.kvoController = [FBKVOController controllerWithObserver:self];
    [self.kvoController observe:self.mWebView keyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew block:^(id  _Nullable observer, id  _Nonnull object, NSDictionary<NSString *,id> * _Nonnull change) {

        weakSelf.mProgressView.alpha = 1;
        [weakSelf.mProgressView setProgress:self.mWebView.estimatedProgress animated:YES];
        if(weakSelf.mWebView.estimatedProgress >= 1.0f)
        {
            [UIView animateWithDuration:0.5 animations:^{
                weakSelf.mProgressView.alpha = 0;
            } completion:^(BOOL finished) {
                [weakSelf.mProgressView setProgress:0.0f animated:NO];
            }];
        }  
    }];

    [self.kvoController observe:self.mWebView keyPath:@"title" options:NSKeyValueObservingOptionNew block:^(id  _Nullable observer, id  _Nonnull object, NSDictionary<NSString *,id> * _Nonnull change) {
         weakSelf.navigationItem.title = self.mWebView.title;
    }];
}

参考

http://www.jianshu.com/p/6f2d733502c6
http://blog.csdn.net/reylen/article/details/46679895

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值