public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			var v = new KeyValueViewController();

			window = new UIWindow (UIScreen.MainScreen.Bounds);	
			window.BackgroundColor = UIColor.White;
			window.Bounds = UIScreen.MainScreen.Bounds;
			window.AddSubview(v.View);
            window.MakeKeyAndVisible ();
			return true;
		}
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            var v = new KeyValueViewController();

            window = new UIWindow(UIScreen.MainScreen.Bounds);
            window.BackgroundColor = UIColor.White;
            window.Bounds          = UIScreen.MainScreen.Bounds;
            window.AddSubview(v.View);
            window.MakeKeyAndVisible();
            return(true);
        }
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			var viewController = new KeyValueViewController ();

			Window = new UIWindow (UIScreen.MainScreen.Bounds) {
				BackgroundColor = UIColor.White,
				Bounds = UIScreen.MainScreen.Bounds
			};

			Window.RootViewController = viewController;
			Window.MakeKeyAndVisible ();

			return true;
		}
Exemple #4
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            var viewController = new KeyValueViewController();

            Window = new UIWindow(UIScreen.MainScreen.Bounds)
            {
                BackgroundColor = UIColor.White,
                Bounds          = UIScreen.MainScreen.Bounds
            };

            Window.RootViewController = viewController;
            Window.MakeKeyAndVisible();

            return(true);
        }