如何加载具有相似名称的所有图像

时间:2015-06-18 08:25:53

标签: ios objective-c uiimage xcasset

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

[UIImage imageNamed:@"face_icon_1"];

如果我的图片名称类似于“face_icon_2”,“face_icon_3”等,我如何找到它们并且没有硬编码?

1 个答案:

答案 0 :(得分:0)

UIImage *image;
NSInteger counter = 1;
do {
  image = [UIImage imageNamed:[NSString stringWithFormat:@"face_icon_%zd", counter++];
//add the image to an array
} while (image);