I know how to code a custom segue, which would go from left to right (while the normal push segue is from right to left). But as you may know, iOS7 push segue is different than pre-ios7: indeed, the incoming view controller actually floats in over the top of the previous one, which only moves a small distance out of the way.
I want to do exactly the same, but reverse. Do I have to create a custom segue?
The reverse segue must be available somewhere, since it is triggered by the "Back" button on my navigationController?
All in all, I would like a transition between ViewControllers in a NavigationController, like the default push transition, but reverse.
Can somebody help me? Thanks a lot