在我的应用程序包中,我有几个项目的几个图像。
ItemA_largepicture.png
ItemA_smallPicture.png
ItemA_overViewPicture.png
ItemB_largepicture.png
ItemB_smallPicture.png
ItemB_overViewPicture.png
ItemC_largepicture.png
ItemC_smallPicture.png
ItemC_overViewPicture.png
...
我想提取,例如所有 ItemB 图片,以显示在 scrollView 中。我可以通过以下操作轻松获得
path=[ItemB stringByAppendingString:@"_largePicture];
NSString *imagePath=[[NSBundle mainBundle]pathForResource:path ofType:@"png"];
UIImage *image=[UIImage imageWithContentsOfFile:imagePath];
[self.image setImage:image];
所以问题很简单;如何获取所有 ItemB 图片?我需要将它们放入数组中吗?我该怎么做?