我有大约 5,000 个标记为 image_1 到 image_5000 的图像,我如何创建一个循环遍历每个图像然后重复的动画?这是一个 iPhone 应用程序,仅供我个人使用,非常感谢任何帮助。
这是我正在使用的代码,为什么它不起作用。
//.h
@interface ViewController : UIViewController{
IBOutlet UIImageView *imageView;
int i;
}
@end
- (void)viewDidLoad
{
i = 0;
[NSTimer scheduledTimerWithTimeInterval:0.5
target:self
selector:@selector(loop)
userInfo:nil
repeats:YES];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
-(void)loop{
if (i<MAX_IMAGES) {
imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"image_%d.bmp",i]];
NSLog(@"Image:%d",i);
i+=1;
if (i >= MAX_IMAGES) {
i = 1;
}
}
}