コード例 #1
0
ファイル: AppDelegate.cs プロジェクト: Clancey/Bitly-sharp
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _Window = new UIWindow(UIScreen.MainScreen.Bounds);
            _RootController = new RootViewController();

            _Window.RootViewController = _RootController;
            _Window.MakeKeyAndVisible();
            return true;
        }
コード例 #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _Window         = new UIWindow(UIScreen.MainScreen.Bounds);
            _RootController = new RootViewController();

            _Window.RootViewController = _RootController;
            _Window.MakeKeyAndVisible();
            return(true);
        }