这应该在您的应用程序文件夹中返回一个包含所有 png 的数组。
[[NSBundle mainBundle] pathsForResourcesOfType:@"png" inDirectory:nil];
注意* 数组包含路径。如果您只想在- (NSString *)lastPathComponent
该数组的特定索引上使用名称,即
NSString *imgName = [[imgArray objectAtIndex:0]lastPathComponent]; //myImage.png