我的xcasset中有几张图片,所以我可以用以下内容加载图片:
[UIImage imageNamed:@"face_icon_1"];
如果我的图片名称类似于“face_icon_2”,“face_icon_3”等,我如何找到它们并且没有硬编码?
答案 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);