public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			window = new UIWindow (UIScreen.MainScreen.Bounds);

			tabController = new TabController ();
			window.RootViewController = tabController;

			window.MakeKeyAndVisible ();
            
			return true;
		}
예제 #2
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // 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;
            tabController = new TabController();
            Window.RootViewController = tabController;

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

            return true;
        }