public override bool FinishedLaunching (UIApplication app, NSDictionary options) { window = new UIWindow (UIScreen.MainScreen.Bounds); window.RootViewController = viewController; window.MakeKeyAndVisible (); // Create and push our master view controller var allTheQuotes = new MasterViewController (null, NSBundle.MainBundle); viewController.PushViewController (allTheQuotes, false); return true; }
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { window = new UIWindow(UIScreen.MainScreen.Bounds); window.RootViewController = viewController; window.MakeKeyAndVisible(); // Create and push our master view controller var allTheQuotes = new MasterViewController(null, NSBundle.MainBundle); viewController.PushViewController(allTheQuotes, false); return(true); }