ImageView数组

时间:2010-04-15 05:38:08

标签: iphone objective-c iphone-sdk-3.0 ios-simulator

我正在制作一个射击游戏,因为我需要一系列ImageView,因此对于每个新级别,子弹可以消失,并且视图将从初始级别显示。如果有人知道如何将图像视图存储在一个阵列中,请告诉我...... 关于病毒..

1 个答案:

答案 0 :(得分:1)

NSMutableArray *mutableArray = [NSMutableArray array];
UIImageView *imageView = [[UIImageView alloc] initWithImage:@"Image.png"];
[mutableArray addObject:imageView];
[imageView release];