Similar to SO question ref: Why does UIView:animateWithDuration complete immediately? however, my code is using [UIView beginAnimation], etc.
I have essentially this:
[UIView beginAnimation ...];
[UIView setAnimationDelay: 0.0];
[UIView setAnimationDuration: 1.25];
animatedImage.transform = "scale-up transform";
[UIView setAnimationDelay: 1.25]
[UIView setAnimationDuration: 0.50];
animatedImage.transform = "scale-down transform";
[UIView commitAnimation];
The image immediately jumps to the scale-up size, then 1.25 seconds later it animates nicely to the "scale-down" size. If I chain more sequences, they all work correctly, except the first one.
