public TableViewDataSource(RootViewController owner) { if (owner == null) { throw new ArgumentNullException("owner"); } _owner = owner; }
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { _window = new UIWindow(UIScreen.MainScreen.Bounds); _rootViewController = new RootViewController(); _navigationController = new UINavigationController(_rootViewController); _window.RootViewController = _navigationController; _window.MakeKeyAndVisible(); return(true); }
public TableViewDataSource(RootViewController owner) { if (owner == null) throw new ArgumentNullException("owner"); _owner = owner; }
public override bool FinishedLaunching (UIApplication app, NSDictionary options) { _window = new UIWindow (UIScreen.MainScreen.Bounds); _rootViewController = new RootViewController (); _navigationController = new UINavigationController (_rootViewController); _window.RootViewController = _navigationController; _window.MakeKeyAndVisible (); return true; }