I'm trying to migrate some UIView animation code that performed the page curl animation from the UIView beginAnimations/commitAnimations to the block version. The original code works but I don't understand why the block version doesn't show the page curl. Any suggestions?

Original:

// disable user interaction during the flip
containerView.userInteractionEnabled = NO;    

// setup the animation group
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(flipTransitionDidStop:finished:context:)];

// swap the views and transition
if (frontViewIsVisible == YES) 
{
    [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:containerView cache:YES];

    // Remove the view that's shown    
    [self.frontElementController.view removeFromSuperview];

    // Add the other view as primary view 
    [containerView addSubview:self.altElementController.view];    

    // Change the section header while we're at it
    self.headerLabel.text = self.altElementController.title;
} 

[UIView commitAnimations];

frontViewIsVisible = !frontViewIsVisible;

Here's the animation portion of the migrated code with blocks that doesn't quite work:

[UIView animateWithDuration:0.3
          delay:0
        options:UIViewAnimationOptionTransitionCurlUp
     animations:^{                                                                                            
         [self.frontElementController.view removeFromSuperview];                                      
         [containerView addSubview:self.altElementController.view];                                          
     }
     completion:^(BOOL finished){                                        
        self.headerLabel.text = self.altElementController.title;
     }
];
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.