Example #1
0
        // This method is invoked when the application has loaded its UI and is ready to run
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            window = new UIWindow(UIScreen.MainScreen.Bounds);

            viewController            = new Transitioning_To_Xcode_4ViewController("Transitioning_To_Xcode_4ViewController", null);
            window.RootViewController = viewController;
            window.MakeKeyAndVisible();

            return(true);
        }
Example #2
0
		// This method is invoked when the application has loaded its UI and is ready to run
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			window = new UIWindow (UIScreen.MainScreen.Bounds);

			viewController = new Transitioning_To_Xcode_4ViewController ("Transitioning_To_Xcode_4ViewController", null);
			window.RootViewController = viewController;
			window.MakeKeyAndVisible ();

			return true;
		}