public ExhibitorSplitView ()
		{
			//View.Bounds = new CGRect(0,0,UIScreen.MainScreen.Bounds.Width,UIScreen.MainScreen.Bounds.Height);
			Delegate = new SplitViewDelegate();
			
			_exhibitorsList = new ExhibitorsScreen(this);
			_exhibitorDetails = new ExhibitorDetailsScreen(-1);
			
			this.ViewControllers = new UIViewController[]
				{_exhibitorsList, _exhibitorDetails};
		}
Esempio n. 2
0
        public ExhibitorSplitView()
        {
            //View.Bounds = new RectangleF(0,0,UIScreen.MainScreen.Bounds.Width,UIScreen.MainScreen.Bounds.Height);
            Delegate = new SplitViewDelegate();

            _exhibitorsList   = new ExhibitorsScreen(this);
            _exhibitorDetails = new ExhibitorDetailsScreen(-1);

            this.ViewControllers = new UIViewController[]
            { _exhibitorsList, _exhibitorDetails };
        }