我有一个带有10个不同图像的NSMutableArray。最初我正在显示该阵列的前三个图像。现在我想要的是在下一个按钮点击时显示该阵列的下一个图像。单击上一个按钮时的上一个图像。单击下一个按钮时,我能够显示不同的图像,但它只出现在最后一个UIImageView上。
- (IBAction)nextImage:(id)sender {
NSLog(@"count is :%d%d",count,courseArry.count);
if ((count+1) > courseArry.count) {
count = 0;
}
starImageView.image = [UIImage imageNamed:[courseArry objectAtIndex:count]];
count++;
}
-(IBAction)previousImage:(id)sender {
if ((count-1) > courseArry.count) {
count = 0;
}
starImageView.image = [UIImage imageNamed:[courseArry objectAtIndex:count]];
count++;
}