I am animating a custom UIView using animation blocks:
- (void)animateProgress
{
[UIView animateWithDuration:animationDuration
delay:0.0
options: UIViewAnimationCurveLinear | UIViewAnimationOptionBeginFromCurrentState
animations:^(void) {
midImageView.frame = CGRectMake(midImageView.frame.origin.x, midImageView.frame.origin.y, (elapsedTime / endTime) * (bodyImageView.frame.size.width / 10 - MID_IMAGE_OFFSET_X), midImageView.frame.size.height);
}
}
-animateProgress() is being called repeatedly from an NSTimer object.
The problem is with smooth transitions from in-flight animations. I've set the UIViewAnimationOptionBeginFromCurrentState flag, but the current animation is not smoothly transitioning to the next one - the current animation is allowed to finish and then the next one starts - instead of smoothly combining both of them together.
What stumps me is that there is no problems when I do not use Obj-C style blocks:
- (void)animateProgress
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:5.0];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
midImageView.frame = CGRectMake(midImageView.frame.origin.x, midImageView.frame.origin.y, (elapsedTime / endTime) * (bodyImageView.frame.size.width / 10 - MID_IMAGE_OFFSET_X), midImageView.frame.size.height);
[UIView commitAnimations];
}
This works fine. Why doesn't it work when I use blocks?
completion:nilto the end of the block (after animations block) – ColdLogic Jul 28 '11 at 23:04