I'm using a series of animations to move a "monster" on the screen.
The first two animations work fine - they seem to call the "animationDidStop" routine at their conclusion to call the next animation.
The last animation is a group animation that moves, rotates, and scales the image at the same time. I set it's delegate to be "self" figuring it would use the existing "animationDidStop" routine like the other two. I even added an NSLog call to see what string is being passed.
This last group animation doesn't seem to use the "animationDidStop" routine like the other two. It does run however, it just doesn't seem to want to signal it's done.
Is there a different delegate routine that I need to setup for the group animation? I'm trying to make the image disappear at the conclusion of the group animation by hiding it's view. I just can't get it to be called when the group animation ends.
Any help would be appreciated.
The first two animations work fine - they seem to call the "animationDidStop" routine at their conclusion to call the next animation.
The last animation is a group animation that moves, rotates, and scales the image at the same time. I set it's delegate to be "self" figuring it would use the existing "animationDidStop" routine like the other two. I even added an NSLog call to see what string is being passed.
This last group animation doesn't seem to use the "animationDidStop" routine like the other two. It does run however, it just doesn't seem to want to signal it's done.
Is there a different delegate routine that I need to setup for the group animation? I'm trying to make the image disappear at the conclusion of the group animation by hiding it's view. I just can't get it to be called when the group animation ends.
Any help would be appreciated.