Ejemplo n.º 1
0
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			UIViewController initialViewController;

			initialViewController = new AlertControllerSampleViewController();

			window = new UIWindow (UIScreen.MainScreen.Bounds);
			window.RootViewController = initialViewController;
			window.MakeKeyAndVisible ();
			return true;
		}
Ejemplo n.º 2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            UIViewController initialViewController;

            initialViewController = new AlertControllerSampleViewController();

            window = new UIWindow(UIScreen.MainScreen.Bounds);
            window.RootViewController = initialViewController;
            window.MakeKeyAndVisible();
            return(true);
        }