I have over 200 images i want to animate over the space of around 10 seconds. I have tried using animationImages by loading the images into an array and then calling the startAnimating method. This worked okay in the simulator but crashed the iPad.
I have tried calling an NStimer every 1/25th of a second and changing the image each time the timer fired. This performed better than the previous method, it worked well in the simulator but also crashed near the end of the (laggy) animation on the iPad.
Can someone help me out and tell me the ideal way of approaching this problem? Thanks.
ORIGINAL CODE:
- (void) humptyFallingAnim {
NSString *filename;
if (humptyImageCounter < 285) {
filename = [NSString stringWithFormat:@"Humpty Animation HD1.2 png sequence/humpty_HD1.2_%d.png", humptyImageCounter];
UIImage *someImage = [UIImage imageNamed:filename];
humptyFalling.image = someImage;
NSLog(@"loaded image: %d", humptyImageCounter);
humptyImageCounter++;
} else {
NSLog(@"Timer invalidated");
[humptyTimer invalidate];
humptyTimer = nil;
}
}
EDIT: Some new code that isn't working for me
NSString *filename;
if (humptyImageCounter < 285) {
filename = [NSString stringWithFormat:@"Humpty Animation HD1.2 png sequence/humpty_HD1.2_%d.png", humptyImageCounter];
@autoreleasepool {
UIImage *someImage = [UIImage imageWithContentsOfFile:filename];
humptyFalling.image = someImage;
NSLog(@"loaded image: %d", humptyImageCounter);
}
humptyImageCounter++;
} else {
NSLog(@"Timer invalidated");
[humptyTimer invalidate];
humptyTimer = nil;
}
EDIT 2:
-(void) motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
NSLog(@"You shook it!");
[self.view bringSubviewToFront:imgSnail];
if (deviceHasBeenShaken == 0) {
deviceHasBeenShaken = 1;
}
humptyTimer = [NSTimer scheduledTimerWithTimeInterval:(1/25) target:self selector:@selector(humptyFallingAnim) userInfo:nil repeats:YES];
[self moveHumptyPosition];
}

CALayers and then animating the layers? – dasblinkenlight Jul 3 '12 at 23:50CALayers. I haven't used them before - could you direct to something that might suit this situation? Thanks – garethdn Jul 3 '12 at 23:59