0

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?

Zhe
  • 3
  • 3
  • 2
    Possible duplicate of [MvvmCross ViewModel transition from the left](http://stackoverflow.com/questions/26296840/mvvmcross-viewmodel-transition-from-the-left) – Peter Uhnak Oct 28 '15 at 20:06
  • I think we asked different things, but thanks :) – Zhe Oct 29 '15 at 01:57

1 Answers1

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