我正在开发一个iPhone项目,并且在不同目录下定义了两个主题,大多数文件共享相同的名称(如background.png,image1.png,image2.png等)。我已将它们导入到xcode中的不同组名(group1,group2)。
如何告诉UIImage加载来自给定组的图像,比如说,我想要group1:background.png?
谢谢, 添
答案 0 :(得分:1)
试试这个:
NSString *path = [[NSBundle mainBundle] pathForResource:@"image1" ofType:@"png" inDirectory:@"group1"];
[UIImage imageWithContentsOfFile: path];