0

我的 xcasset 中有几张图片,所以我可以加载图片:

[UIImage imageNamed:@"face_icon_1"];

如果我的图像名称像“face_icon_2”、“face_icon_3”等,我如何在没有硬编码的情况下找到它们?

4

1 回答 1

0
UIImage *image;
NSInteger counter = 1;
do {
  image = [UIImage imageNamed:[NSString stringWithFormat:@"face_icon_%zd", counter++];
//add the image to an array
} while (image);
于 2015-06-18T08:30:09.200 回答