public override bool FinishedLaunching (UIApplication app, NSDictionary options) { var ms = new MainScreen(); window = new UIWindow (UIScreen.MainScreen.Bounds); window.BackgroundColor = UIColor.White; window.Bounds = UIScreen.MainScreen.Bounds; window.RootViewController = ms; window.MakeKeyAndVisible (); return true; }
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { var ms = new MainScreen(); window = new UIWindow(UIScreen.MainScreen.Bounds); window.BackgroundColor = UIColor.White; window.Bounds = UIScreen.MainScreen.Bounds; window.RootViewController = ms; window.MakeKeyAndVisible(); return(true); }