public override bool FinishedLaunching(UIApplication app, NSDictionary options)
		{
			//_window = new UIWindow(UIScreen.MainScreen.Bounds);
			//var presenter = new MvxTouchViewPresenter (this, Window);

			var setup = new  PropertyTracker.UI.iOS.AppSetup(this, Window);
			setup.Initialize();

			var startup = Mvx.Resolve<IMvxAppStart> ();
			startup.Start();

			Window.MakeKeyAndVisible();

			return true;
		}
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            //_window = new UIWindow(UIScreen.MainScreen.Bounds);
            //var presenter = new MvxTouchViewPresenter (this, Window);

            var setup = new  PropertyTracker.UI.iOS.AppSetup(this, Window);

            setup.Initialize();

            var startup = Mvx.Resolve <IMvxAppStart> ();

            startup.Start();

            Window.MakeKeyAndVisible();

            return(true);
        }