Inheritance: UIViewController
Esempio n. 1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            window = new UIWindow(UIScreen.MainScreen.Bounds);
            _RootViewController = new RootViewController();

            window.RootViewController = _RootViewController;
            window.MakeKeyAndVisible();

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



            window.RootViewController = _RootViewController;
            window.MakeKeyAndVisible();

            return(true);
        }