public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
		{
			var rootViewController = UIStoryboard.FromName ("Main", null).InstantiateViewController ("SimpleViewController");
			var rootNavController = new TransitionsNavigationController (rootViewController);

			Window = new UIWindow (UIScreen.MainScreen.Bounds);
			Window.RootViewController = rootNavController;
			Window.MakeKeyAndVisible ();

			return true;
		}
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            var rootViewController = UIStoryboard.FromName("Main", null).InstantiateViewController("SimpleViewController");
            var rootNavController  = new TransitionsNavigationController(rootViewController);

            Window = new UIWindow(UIScreen.MainScreen.Bounds);
            Window.RootViewController = rootNavController;
            Window.MakeKeyAndVisible();

            return(true);
        }