1

在我的应用程序中,我想从右到左设置弹出视图控制器。当推送视图控制器从左到右流动时,很好。我试过这个如何在基于导航的应用程序中更改推送和弹出动画,但它通过转换工作我想要从右到左没有动画弹出视图控制器的动画视图?请帮助解决

4

1 回答 1

3

流行效果

ViewController *back = [[ViewController alloc]initWithNibName:@"ViewController" bundle:nil];
NSMutableArray *vcs =  [NSMutableArray arrayWithArray:self.navigationController.viewControllers];
[vcs insertObject:back atIndex:[vcs count]-1];
[self.navigationController setViewControllers:vcs animated:NO];
[self.navigationController popViewControllerAnimated:YES];
于 2012-10-13T07:59:49.160 回答