예제 #1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // create a new window instance based on the screen size
            window = new UIWindow(UIScreen.MainScreen.Bounds);

            // If you have defined a root view controller, set it here:
            // window.RootViewController = myViewController;

            viewController            = new MainViewController();
            window.RootViewController = viewController;


            // make the window visible
            window.MakeKeyAndVisible();

            return(true);
        }
예제 #2
0
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			// create a new window instance based on the screen size
			window = new UIWindow (UIScreen.MainScreen.Bounds);
			
			// If you have defined a root view controller, set it here:
			// window.RootViewController = myViewController;

			viewController = new MainViewController ();
			window.RootViewController = viewController;


			// make the window visible
			window.MakeKeyAndVisible ();
			
			return true;
		}