As everyone know the UINavigationController push a ViewController from Left To Right, is there a way to push the View from Right To Left? like the animation for the back but
Just an improvement of the best answer here in my opinion:
UIViewController *newVC = ...; [self.navigationController setViewControllers:@[newVC, self] animated:NO]; [self.navigationController popViewControllerAnimated:YES];
And to go back to the initial controller, just do a push to it.