资源文件夹中的NSBundle和访问文件夹

时间:2010-08-18 15:39:24

标签: iphone

我在Resources文件夹中有Images文件夹,其中包含图像。我使用以下代码来访问图像,但结果数组总是空的:

NSArray *imagesPath = [bundle pathsForResourcesOfType:@"gif" inDirectory:@"Images"]; 

我错过了什么吗?

1 个答案:

答案 0 :(得分:3)

如果您执行[[NSBundle mainBundle] pathForResource:@"Images" ofType:nil],您是否获得该文件夹的正确路径? 如果不是,你确定它是一个文件夹而不是一个简单的组吗?