Пример #1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _window = new UIWindow(UIScreen.MainScreen.Bounds);
			
            var presenter = new CampViewPresenter(this, _window);
            var setup = new Setup(this, presenter);
            setup.Initialize();

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

            _window.MakeKeyAndVisible();

            //UINavigationBar.Appearance.TintColor = AppStyles.NavigationBarTintColor;
            UINavigationBar.Appearance.BackgroundColor = UIColor.Black;
            UINavigationBar.Appearance.TintColor = UIColor.Clear;

            return true;
        }
Пример #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _window = new UIWindow(UIScreen.MainScreen.Bounds);

            var presenter = new CampViewPresenter(this, _window);
            var setup     = new Setup(this, presenter);

            setup.Initialize();

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

            startup.Start();

            _window.MakeKeyAndVisible();

            //UINavigationBar.Appearance.TintColor = AppStyles.NavigationBarTintColor;
            UINavigationBar.Appearance.BackgroundColor = UIColor.Black;
            UINavigationBar.Appearance.TintColor       = UIColor.Clear;

            return(true);
        }