public TableViewDataSource(RootViewController owner)
 {
     if (owner == null)
     {
         throw new ArgumentNullException("owner");
     }
     _owner = owner;
 }
Esempio n. 2
0
        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);
        }
Esempio n. 3
0
			public TableViewDataSource(RootViewController owner) {
				if (owner == null)
					throw new ArgumentNullException("owner");
				_owner = owner;
			}
Esempio n. 4
0
		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;
		}