取UIImage的方式关系着是否 缓存

UIImageView *wallpaper = [[UIImageView alloc] initWithImage:

[UIImage imageNamed:@"icon.png"]]; // 会缓存图片

UIImageView *wallpaper = [[UIImageView alloc] initWithImage:

[UIImage imageWithContentsOfFile:@"icon.png"]]; // 不会缓存图片

你可能感兴趣的:(职场,缓存,uiimage,休闲)