When I open a specific view, I want to change the direction of the slide
animation to --> from right to left instead of the default direction (left
to right).

I found a solution to change the animation transition. Although this is a
flip animation and I want to change the direction of the default slide
animation of a navigation controller.

var screen = new Screen();
NavigationController.PushViewController(screen, false);

UIView.BeginAnimations(null,IntPtr.Zero);
UIView.SetAnimationDuration(0.75);
UIView.SetAnimationTransition(UIViewAnimationTransition.FlipFromLeft ,
NavigationController.View,true); // <-- Change the animation
UIView.CommitAnimations();



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Change-direction-of-push-transition-animation-to-left-tp4658087.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to