Example #1
0
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			UIApplication.SharedApplication.SetStatusBarStyle(UIStatusBarStyle.LightContent, true);
            _window = new UIWindow (UIScreen.MainScreen.Bounds);
            _stepCounter = new StepCounterViewController();

            _window.RootViewController = _stepCounter;
			_window.MakeKeyAndVisible ();			
			return true;
		}
Example #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            UIApplication.SharedApplication.SetStatusBarStyle(UIStatusBarStyle.LightContent, true);
            _window      = new UIWindow(UIScreen.MainScreen.Bounds);
            _stepCounter = new StepCounterViewController();

            _window.RootViewController = _stepCounter;
            _window.MakeKeyAndVisible();
            return(true);
        }