私のアプリ バンドルには、複数のアイテムの画像がいくつかあります。
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 のすべての写真を取得するにはどうすればよいですか? それらを配列に入れる必要がありますか? どうすればそれを行うことができますか?