Possible Duplicate:
How to change the Push and Pop animations in a navigation based app
Using MonoTouch and MonoTouch.Dialog, I have a DialogViewController
that I'm pushing onto a UINavigationController
and when I do so it makes the current screen being displayed move off from right to left. I was wondering how I would go about reversing that, making the current screen be "pushed off" left to right, like when you press a back button.
My code is below, where _root is a RootElement.
_viewController = new DialogViewController(_root, false);
_navController.PushViewController(_viewController, true);
EDIT: I've tried using _viewController.ModalTransitionStyle and such to no avail if this information helps.