我不明白在我的代碼中寫入圖像名稱的位置以及顯示順序。這裏是我的代碼管理UIScrollView中的圖像
// load all the images from our bundle and add them to the scroll view
NSUInteger i;
for (i = 1; i <= kNumImages; i++)
{
NSString *imageName = [NSString stringWithFormat:@"image%d.jpg", i];
UIImage *image = [UIImage imageNamed:imageName];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
我有標題爲「image0.jpeg,image1.jpg」的圖像。如何將其插入到我的代碼中並以特定方式排序?