美文网首页
报错:An instance 0x102c1aa00 of cl

报错:An instance 0x102c1aa00 of cl

作者: 婼熙之名 | 来源:发表于2019-08-21 15:40 被阅读0次

1.错误描述:

An instance 0x11642da00 of class WKWebView was deallocated while key value observers were still registered with it. Current observation info: <NSKeyValueObservationInfo 0x1708316e0> ( <NSKeyValueObservance 0x170648b50: Observer: 0x117910cc0, Key path: title, Options: <New: YES, Old: NO, Prior: NO> Context: 0x0, Property: 0x170643c90>

2.原因:因为没有移除WKWebView的监听方法

//添加获取web页面title的监听

[self.webView addObserver:self forKeyPath:@"title" options:NSKeyValueObservingOptionNew context:NULL];

3.移除KVO监听方法

-(void)dealloc{

    [self.webView removeObserver:self forKeyPath:@"title"];

    NSLog(@"WebViewController-dealloc");

}

相关文章

网友评论

      本文标题:报错:An instance 0x102c1aa00 of cl

      本文链接:https://www.haomeiwen.com/subject/hnxdeqtx.html