我对 Cocoa 编程比较陌生,需要一些帮助。
我想为游戏中的单位制作一些图像视图并用代码添加它们,因为将它们放在视图中并在 Interface Builder 中进行连接是很多工作。
我已经找到了创建和插入 UIImageViews 的代码:
UIImageView *image0 =[[UIImageView alloc] initWithFrame:CGRecMake(x,y,w,h)];
image0.image=[UIImage imageNamed:@"image.png"];
[self.view addSubview:image0];
我的问题是:如果我可以制作一个数组,那么我不必为每个图像视图都写这个,并且我将相同的图像放入其中?