本文介绍了在iPhone中使用较少的内存,uiimage和带有文件内容的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用高清图像,有些时候我的记忆已满,我用 UIImage * image = [UIImage imageNamed:@]更新我的图像;
,在内存方面是否正确?
I am using HD images and my memory is full after some times, I am update my images with UIImage *image = [UIImage imageNamed:@""];
, is it right in terms of memory?
推荐答案
[UIImage imageNamed:]
缓存图像。请尝试使用 [UIImage imageWithData:]
。
[UIImage imageNamed:]
caches the image. Try using [UIImage imageWithData:]
instead.
这篇关于在iPhone中使用较少的内存,uiimage和带有文件内容的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!