ios - 内存警告和崩溃
在我的应用程序中,我有一个 UIWebView,在该 Web 视图中我正在加载一些文本和图像。我通过解析 rss feed 来获取这些数据。当加载大数据时,我的应用程序崩溃并显示内存警告。如何避免我的应用程序中出现此内存警告问题
in my app i have a UIWebView and in that web view i am loading some text and images. I am getting those datas by parsing from an rss feed. When large datas get loaded my app get crashed saying that memory warning. How to avoid this memory warning issues in my app
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,对此只有一个真正的答案:使用更少的内存。
当您收到内存警告时,您应该清除所有可以重新计算的缓存或临时数据。正如您所发现的,如果您不这样做,iOS 将杀死您的应用程序。
Sorry, but there's only one real answer to this: use less memory.
When you get the memory warning you should clear out any caches or temporary data that can be recalculated. As you've found, if you don't do that iOS will kill your app.