从 html 字符串加载图像时 ios 应用程序崩溃
在我的应用程序的网页视图页面中,我尝试从 html 字符串加载图像。大约有 27 张图像。该应用程序崩溃了,并且在错误报告中显示为“内存警告2”。如何克服这个问题...请朋友们帮助我
in my app in a web view page i am trying to load images from an html string. There are around 27 images. The app is getting crashed and in the error report it says as memorywarning2. How to overcome this problem....Please help me friends
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能一次将太多、太大的图像加载到内存中。
除非您确实需要 Web 视图,否则您可以在
UIScrollView
中使用UIImageView
并自行处理内存使用情况。如果您必须使用网络视图,也许您可以使用较小的图像。
You're probably loading too many, too large images into memory at one time.
Unless you really need a web view, you could use
UIImageView
s in aUIScrollView
and handle the memory usage yourself.If you must use a web view, maybe you could use smaller images.