這篇文章給大家分享的是有關(guān)iOS中wkwebView內(nèi)存泄漏與循環(huán)引用問(wèn)題的示例分析的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
創(chuàng)新互聯(lián)公司主營(yíng)和碩網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都APP應(yīng)用開(kāi)發(fā),和碩h5微信小程序定制開(kāi)發(fā)搭建,和碩網(wǎng)站營(yíng)銷推廣歡迎和碩等地區(qū)企業(yè)咨詢
解決方法
1,在做網(wǎng)頁(yè)端js交互的時(shí)候 我們都會(huì)這樣去添加js
[self.customWebView.configuration.userContentController addScriptMessageHandler:self name:obj];
后面也添加了 delloc
- (void)dealloc { [_customWebView removeObserver:self forKeyPath:@"estimatedProgress"]; [self removeScriptMessageHandler]; }
后來(lái)發(fā)現(xiàn)在加載網(wǎng)頁(yè)的時(shí)候 pop push 多次操作 內(nèi)存一直在增加,高的時(shí)候 都快200上下了,才注意到這個(gè)內(nèi)存問(wèn)題,
剛開(kāi)始的解決方法是:
- (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; [self removeScriptMessageHandler]; }
后來(lái)發(fā)現(xiàn)問(wèn)題依舊存在 delloc 依舊不走,雖然走了移除方法 ,但是在當(dāng)你在pop push時(shí)候 網(wǎng)頁(yè)沒(méi)有移除掉原先占的內(nèi)存,后來(lái)發(fā)現(xiàn)
[userContentController addScriptMessageHandler:self name:GetKeyiOSAndroid_Action];
這里userContentController持有了self ,然后
userContentController 又被configuration持有,
最終唄webview持有,然后webview是self的一個(gè)私有變量,
所以self也持有self,所以這個(gè)時(shí)候有循環(huán)引用的問(wèn)題存在,
導(dǎo)致界面被pop或者dismiss之后依然會(huì)存在內(nèi)存中。不會(huì)被釋放
目前想到2個(gè)辦法
1,上面我提到了 self持有self,導(dǎo)致的循環(huán)引用問(wèn)題
我做法是重新建了一個(gè)類WKWebViewConfiguration
[[WKWebViewConfiguration alloc]init]; userContentController =[[WKUserContentController alloc]init]; configuration.userContentController= userContentController; webView = [[WKWebView alloc]initWithFrame:self.view.bounds configuration:configuration];
重寫self方法就解決了
2,delloc 內(nèi)存,
- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [_webView.configuration.userContentController addScriptMessageHandler:self name:GetKeyiOSAndroid_Action]; [_webView.configuration.userContentController addScriptMessageHandler:self name:Upload_Action]; } - (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; [_webView.configuration.userContentController removeScriptMessageHandlerForName:GetKeyiOSAndroid_Action]; [_webView.configuration.userContentController removeScriptMessageHandlerForName:Upload_Action]; }
感謝各位的閱讀!關(guān)于“iOS中wkwebView內(nèi)存泄漏與循環(huán)引用問(wèn)題的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!