SecondViewController *secondVC=[[SecondViewController alloc]init];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.9];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
[self.navigationController pushViewController:secondVC animated:NO];
[UIView commitAnimations];
原文:http://www.cnblogs.com/zhibin/p/4119025.html