Can I “curl down” a page on popViewControllerAnimated?
问题 I can "curl up" a view controller with 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 can't curl down the last page like this: [UIView beginAnimations:@"animation" context:nil]; [self.navigationController popViewControllerAnimated:NO];