我的模型来自 Core Data。
我的 bean 将图像作为 NSData 存储在模型中。
要显示我的图像,我需要这样做:
[UIImage imageWithData:bean.imageData]
如果我到处都这样做可以吗?我的意思是,从 View #1 我通过创建 [UIImage imageWithData:] 来显示图像,然后我继续 View #2 我需要显示相同的图像,但我只在 2 个 View 之间传递 bean,所以我重新创建 UIImage与 [UIImage imageWithData]。
我想知道如果我这样做是否需要太多 CPU 或内存...我需要自己管理缓存吗?我认为这可能是 CoreData 很常见的用例,所以有一个通用的模式来处理这个吗?
Best Answer-推荐答案 strong>
imageWithData 不会缓存您的图像(根据文档,唯一要缓存的 UIImage 方法是 imageNamed)
Here is an algorithm不过,用于缓存图像。
关于ios - 调用 [UIImage imageWithData :xxx] multiple times,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/18604853/
|