How to set push and pop view controller flow

3.1k Views Asked by At

In my application,i want to set pop view controller right to left.Where as the push view controller flow left to right ,That fine .I tried this How to change the Push and Pop animations in a navigation based app but it works by transition animation view i want without animation pop view controller right to left?please help to solve

1

There are 1 best solutions below

2
On

for pop effect

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];