Inheritance: UIViewController
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            RootView rvc = new RootView();

            window = new UIWindow(UIScreen.MainScreen.Bounds);
            window.AddSubview(rvc.View);
            window.MakeKeyAndVisible();

            return true;
        }
 public MyAlertDelegate(RootView vc)
 {
     this.viewController = vc;
 }
 public MyAlertDelegate(RootView vc)
 {
     this.viewController = vc;
 }