ios开发UIImage imageNamed方法的误用

ぃ、小莉子 提交于 2019-12-11 11:23:48

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

一、加载图片问题

UIImage image = [UIImage imageNamed:imageFileName];

这种图片加载方式带有图片缓存的功能,使用这种方式加载图片后,图片会自动加入系统缓存中,并不会立即释放到内存。一些资源使程序中经常使用的图片资源,

使用这种方式会加快程序的运行减少IO操作,但对于项目中只用到一次的图片,如果采用这种方案加载,会增导致程序的内存使用增加。

以下为官方对此方法的解释说明:

imageNamed:

Returns the image object associated with the specified filename.

+ (UIImage *)imageNamed:( NSString *) name
Parameters
name

The name of the file. If this is the first time the image is being loaded, the method looks for an image with the specified name in the application’s main bundle.

Return Value

The image object for the specified file, or nil if the method could not find the specified image.

Discussion

This method looks in the system caches for an image object with the specified name and returns that object if it exists. If a matching image object is not already

in the cache, this method loads the image data from the specified file, caches it, and then returns the resulting object.


二、非缓存的加载方式

+ (UIImage *)imageWithContentsOfFile:(NSString *)path

+ (UIImage *)imageWithData:(NSData *)data


三、何时使用imageNamed方法


1、采用imageNamed方法的图片加载情况


图片资源反复使用到,如按钮背景图片的蓝色背景,这些图片要经常用到,而且占用内存少


2、不应该采用的情况:


(1)图片一般只使用一次,如一些用户的照片资源

(2)图片资源较大,加载到内存后,比较耗费内存资源

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!