Ejemplo n.º 1
0
        // This method is invoked when the application has loaded its UI and its ready to run
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            FrontViewController fvc = new FrontViewController();
            window.AddSubview(fvc.View);

            window.MakeKeyAndVisible ();

            return true;
        }
 public BackViewController(FrontViewController fvc)
     : base("BackViewController", null)
 {
     this._fvc = fvc;
     Initialize ();
 }