私はすでに多くの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 に答える