前言
現(xiàn)在大多數(shù)網(wǎng)絡(luò)也面加載都會用到wkwebview,之前在使用wkwebview的時候,網(wǎng)上很多的基礎(chǔ)教程使用很多只是說了怎么添加Message Handler 但是并沒有告訴到家有這個內(nèi)存泄漏的風(fēng)險,如果你只是也沒內(nèi)的數(shù)據(jù)調(diào)用你壓根都不會發(fā)現(xiàn)這個問題。沒存泄漏這個問題說大不大,說小不小,嚴(yán)重的話話直接到時app閃退,所以還是得重視起。好下面說一下怎么解決,話不多說了,來一起看看詳細(xì)的介紹吧
解決方法
1,在做網(wǎng)頁端js交互的時候 我們都會這樣去添加js
1
|
[self.customWebView.configuration.userContentController addScriptMessageHandler:self name:obj]; |
后面也添加了 delloc
1
2
3
4
|
- ( void )dealloc { [_customWebView removeObserver:self forKeyPath:@ "estimatedProgress" ]; [self removeScriptMessageHandler]; } |
后來發(fā)現(xiàn)在加載網(wǎng)頁的時候 pop push 多次操作 內(nèi)存一直在增加,高的時候 都快200上下了,才注意到這個內(nèi)存問題,
剛開始的解決方法是:
1
2
3
4
5
|
- ( void )viewWillDisappear:( BOOL )animated { [super viewWillDisappear:animated]; [self removeScriptMessageHandler]; } |
后來發(fā)現(xiàn)問題依舊存在 delloc 依舊不走,雖然走了移除方法 ,但是在當(dāng)你在pop push時候 網(wǎng)頁沒有移除掉原先占的內(nèi)存,后來發(fā)現(xiàn)
1
|
[userContentController addScriptMessageHandler:self name:GetKeyiOSAndroid_Action]; |
這里userContentController持有了self ,然后
userContentController 又被configuration持有,
最終唄webview持有,然后webview是self的一個私有變量,
所以self也持有self,所以這個時候有循環(huán)引用的問題存在,
導(dǎo)致界面被pop或者dismiss之后依然會存在內(nèi)存中。不會被釋放
目前想到2個辦法
1,上面我提到了 self持有self,導(dǎo)致的循環(huán)引用問題
我做法是重新建了一個類WKWebViewConfiguration
1
2
3
4
5
|
[[WKWebViewConfiguration alloc]init]; userContentController =[[WKUserContentController alloc]init]; configuration.userContentController= userContentController; webView = [[WKWebView alloc]initWithFrame:self.view.bounds configuration:configuration]; |
重寫self方法就解決了
2,delloc 內(nèi)存,
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- ( 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]; } |
這篇文章:http://m.ythuaji.com.cn/article/161164.html 最終解決了這個問題
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對服務(wù)器之家的支持。
原文鏈接:https://www.jianshu.com/p/d534566f3432