The default transition from one view to another is that the new view appears from the bottom. How can I change it so that the new view appears from the right side?
Asked
Active
Viewed 57 times
1 Answers
1
You need to use a UINavigationController
.
The easiest way to do that is to select your starting view controller on the storyboard and then, on the menu, choose Editor -> Embed In -> Navigation Controller
.
At that point, your segues of type Show
will do a push animation.

Eneko Alonso
- 18,884
- 9
- 62
- 84
-
Thanks!! "Embed In" really works fine :D I'll go check out uinavigationcontroller – Zhe Oct 29 '15 at 01:51