webView.delegate = self 的崩溃

2019-12-09  本文已影响0人  solayu

1.问题起源
在工作中制作了一个webView容器的组件库,提供了各种jsBridge的交互方法供APP端调用。
在某一次项目开发中,一位同事初始化控制器,但并没有调用

YSBaseWebViewController *vc = [[YSBaseWebViewController alloc] init];

然后,程序崩溃。

2.定位问题
断点调试后发现崩溃在了组件库的内部:
webview 懒加载的地方 , _webView.navigationDelegate = self;发生崩溃

-(WKWebView *)webView{
    if (!_webView) {
        _webView = [[WKWebView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight) configuration:self.config];
        _webView.navigationDelegate = self;
        _webView.UIDelegate = self;
        _webView.scrollView.delegate = self;
        _webView.allowsBackForwardNavigationGestures = YES;
        [_webView addSubview:self.errorView];
    }
    return _webView;
}

3.解决问题
我们知道一个 ViewController 有着固定的 Load 顺序:

 (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor lightGrayColor];
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated {
    [super viewWillAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated {
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated {
    [super viewDidDisappear:animated];
}

- (void)dealloc {
}

页面 Push 创建时

2019-02-27 16:52:20.226703+0800 HaveFun[6505:1194253] viewDidLoad
2019-02-27 16:52:20.226908+0800 HaveFun[6505:1194253] viewWillAppear:
2019-02-27 16:52:20.739897+0800 HaveFun[6505:1194253] viewDidAppear:

页面 Pop 返回时

2019-02-27 16:52:24.357144+0800 HaveFun[6505:1194253] viewWillDisappear:
2019-02-27 16:52:24.860338+0800 HaveFun[6505:1194253] viewDidDisappear:
2019-02-27 16:52:24.860821+0800 HaveFun[6505:1194253] dealloc

这些对于我们来说已经很熟悉了,我们知道很多代理需要在 -dealloc 方法中把 self.xxxdelegate = nil; 比如说: _wkWebView.UIDelegate 如果我们此时采用 Lazy-Loading 的方式加载到了页面上,

- (WKWebView *)webView {

    if(!_webView) {
        _webView = [[WKWebView alloc] initWithFrame:self.view.bounds];
        _webView.UIDelegate = self;
        _webView.navigationDelegate = self;
        [self.view addSubview:_webView];
    }
    return _webView;
}

一样在 -dealloc 中销毁的时候设置为 nil

- (void)dealloc {
    NSLog(@"%@", NSStringFromSelector(_cmd));
    self.webView.UIDelegate = nil;
    self.webView.navigationDelegate = nil;
}

怎么会发生以上崩溃问题呢?
因为页面没有进入 -viewDidLoad 所以对于代理对象来说,不能真正的算是成功过, 控制台 log 下

(lldb) po self
<SecondPageViewController: 0x7fe78550f680>

(lldb) po self.webView
0x00007fe78600a400

(lldb) po self.webView.UIDelegate
 nil
(lldb) 

看上面报错信息

Attempting to load the view of a view controller while it is deallocating is not allowed and may result in undefined behavior 

在调用 -dealloc 时,苹果给出的解释是,这时的 ViewController 正在进行进行 -dealloc

It is possible that this object was over-released, or is in the process of deallocation.

而此时的 webView 只有一个内存地址,不能算是一个完整的 UIView 对象,但此对象又不是严格意义上的空对象,所以对其发送 setUIDelegate 消息时,也是不对的。

对于此 SecondViewController 来说,因为页面在 -ViewDidLoad 就需要把 webView 视图加上去,所以这里的 Lazy-Loading 是完全没有必要的, Lazy-Loading 作用主要是处理页面中那些不一定会使用到的元素,不使用的时候不加载,使用的时候它就在那里。 比如说页面有在线客服的小图标,点击后需要展示对话页面,这时候可以使用,如果用户没有这个需要,那就不需要加载,节省了很多操作。

用属性代替

- (void)viewDidLoad {
    [super viewDidLoad];
    _webView = [[WKWebView alloc] initWithFrame:self.view.bounds];
    _webView.UIDelegate = self;
    _webView.navigationDelegate = self;
    [self.view addSubview:_webView];
    
    [_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.jianshu.com"]]];
}

- (void)dealloc {
    NSLog(@"%@", NSStringFromSelector(_cmd));
    _webView.UIDelegate = nil;
    _webView.navigationDelegate = nil;
}

依旧只执行了 -dealloc 方法,但是程序没有崩溃。

继续看下各个对象信息

(lldb) po self
<SecondPageViewController: 0x7fe90cf03900>

(lldb) po _webView
 nil
(lldb) po _webView.navigationDelegate
 nil
(lldb) 

可以看到此时的 _webView 由于没有执行 alloc,所以为严格意义上的空对象,而对空对象发送消息按照苹果的规定是可行的。

上一篇下一篇

猜你喜欢

热点阅读