我已经有很多 UIImageViews 了。我想创建一个 UIImageViews 数组,并为每个索引分配上面的 UIImageViews 之一。我怎样才能用目标 c 做到这一点?
问问题
6829 次
2 回答
6
声明一个 NSMutableArray
NSMutableArray * imagesArray = [[NSMutableArray alloc] init];
只需将指针添加到数组中的 ImageViews 例如:imageView1、imageView2
[imagesArray addObjects: imageView1, imageView2, nil];
如果您不使用 ARC,请不要忘记释放阵列
于 2013-07-20T20:08:59.283 回答
2
NSMutableArray * imageViewsArray = [[NSMutableArray alloc] init];
[imageViewsArray addObject:imageView1];
[imageViewsArray addObject:imageView2];
UIImageView * imageView = [imageViewsArray objectAtIndex:0];
或 UIImageView * imageView = imageViewsArray[0];
于 2013-07-20T22:39:15.787 回答