我正在嘗試爲imageView創建一個圖像數組,然後在按下按鈕時更改這些圖像。我只是測試按鈕的能力,使方法獲得並顯示數組中的圖像。我究竟做錯了什麼?如何在Xcode中實現圖像數組?
這是我到目前爲止的代碼:
- (void)viewDidLoad {
NSMutableArray *imagesArray = [[NSMutableArray alloc] initWithObjects:@"Image1.JPG", @"Image2.JPG", nil];
}
-(IBAction)img1 {
[imageView setImage:[UIImage imageNamed:[imagesArray objectAtIndex:0]]];
}
我也得到警告「未使用變量‘imagesArray’
感謝您的幫助!
'未使用變量 「imagesArray」' ..三思而後行。你可能還沒有使用它... – Martol1ni