Ejemplo n.º 1
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // We create a FlyoutNavigationController to be the 'root' of our app
            var controller = new FMCalendarViewController();

            Window = new UIWindow(UIScreen.MainScreen.Bounds);
            Window.MakeKeyAndVisible();
            Window.RootViewController = controller;
            return(true);
        }
Ejemplo n.º 2
0
		public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
		{
			// We create a FlyoutNavigationController to be the 'root' of our app
			var controller = new FMCalendarViewController ();

			Window = new UIWindow (UIScreen.MainScreen.Bounds);
			Window.MakeKeyAndVisible ();
			Window.RootViewController = controller;
			return true;
		}