加载 webview iphone 时应用程序收到内存警告级别 2
在我的应用程序中,我有一个表格视图,其中有几个单元格,单击后我会启动 Web 视图,但我的应用程序崩溃了,甚至在 Web 视图加载之前就给了我 2 级内存警告。我已经清除了大部分内存泄漏。我应该如何应对这个内存警告?
他们说我必须卸载不需要的视图。我在这里有点困惑。我应该在这里卸载什么 webview、tableview?
In my application I have a tableview which a couple of cells on click of which I launch webview but my application crashes giving me memory warning level 2 even before the webview loads. I have cleared most of the memory leaks. How should I respond to this memory warning?
They say that I have to unload the unwanted views. I'm confused here a bit. What should I be unloading here the webview, the tableview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现
didReceivedMemoryWarning
方法来清除您不需要的所有内存(即表视图的数据源和不属于任何层次结构的视图,因此不会显示)。这些方法(每个视图控制器上都有一个)将被调用以响应内存警告级别 1 和 2。始终在您拥有的每个视图控制器中实现该方法!
还有“大部分内存泄漏?”还不够:将它们全部清除!
Implement the
didReceivedMemoryWarning
method to clear every memory you don't need (i.e. datasource of your tableview and views that are not part of any hierarchy and therefore not shown). Those methods (one on each view controller) will be called in response to memory warning Level 1 and 2.Always implement that method in every viewController you have !
Also "Most of the memory leaks ?" is not sufficient : clear them ALL !