Inheritance: UIViewController
Beispiel #1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            UIApplication.SharedApplication.SetStatusBarHidden (true, false);

            _iphoneVC = new IPhoneViewController ();

            window.AddSubview (_iphoneVC.View);

            window.MakeKeyAndVisible ();

            return true;
        }