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 button.
For now I have this:
[self.navigationController pushViewController:viewController animated:YES];
You can create a
NSMutableArrayfrom the navigationController’s array ofviewcontrollersand insert new viewController before the current one. Then set the viewControllers array without animation and pop back.