I can curl up with the view controller using this code:
[UIView beginAnimations:@"animation" context:nil]; [self.navigationController pushViewController:page animated:NO]; [UIView setAnimationDuration:1]; [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.navigationController.view cache:NO]; [UIView commitAnimations];
but I cannot collapse the last page as follows:
[UIView beginAnimations:@"animation" context:nil]; [self.navigationController popViewControllerAnimated:NO]; [UIView setAnimationDuration:1]; [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.navigationController.view cache:NO]; [UIView commitAnimations];
any idea why not? I just really want to "flip" the animation (as if the sticker was removed to show the "push'ed view controller" and get stuck when they click the button).
thanks
source share