我在Xcode项目中添加了许多图像:图标,主背景,默认(用于启动画面),占位符等。我可以将所有这些图像的名称都放到数组中吗?
答案 0 :(得分:6)
这应该会在您的app文件夹中返回所有png的数组。
[[NSBundle mainBundle] pathsForResourcesOfType:@"png" inDirectory:nil];
注意*数组包含路径。如果您只是希望名称在该数组的特定索引上使用- (NSString *)lastPathComponent
,即
NSString *imgName = [[imgArray objectAtIndex:0]lastPathComponent]; //myImage.png