﻿//
// Animation callback, and null completion callback
//
UIView.Transition (containerView, 0.2, UIViewAnimationOptions.TransitionFlipFromLeft,
		   delegate {
			   fromView.RemoveFromSuperview ();
			   containerView.AddSubview (toView);
		   }, null);