我目前使用该方法在 view1 到 view2 之间转换:
-(IBAction)goToView2{
view2.modalTransitionStyle=UIModalTransitionStyleCoverVertical;
[self presentModalViewController:view2 animated:YES];
}
这使得view2垂直覆盖view1,我想要的是在基于导航的应用程序模板中水平覆盖它,有没有可能这样做,我使用基于视图的应用程序,thanx提前:)