如果图像存储在xcasset Bundle(Xcode 5图像目录)中,有没有办法用imageWithContentsOfFile:
检索UIImage对象?
使用imageNamed:
方法很容易访问它,但imageWithContentsOfFile:
的行为略有不同,那么我应该在路径参数中传递什么?
我尝试使用各种格式,但它们都返回nil
值:
Apple的文档没有为此指定格式。有什么想法吗?
答案 0 :(得分:2)
您无法通过imageWithContentsOfFile:
从xcasset加载图像,因为xcasset中的每个条目都编译为单个二进制文件Assets.car
。此文件的格式未记录,但未反向生成(请参阅"What you should know if you want to try reverse-engineering this stuff." section以获取解释)。
这样做是出于性能和低内存消耗的原因,这就是为什么imageNamed:
是一个很好的解决方案。
答案 1 :(得分:0)
需要做一些工作。
我希望,以下链接可以解决您的问题。
How to get [UIImage imageWithContentsOfFile:] and High Res Images working