public NewsSplitView ()
		{
			View.Bounds = new CGRect(0,0,UIScreen.MainScreen.Bounds.Width,UIScreen.MainScreen.Bounds.Height);
			Delegate = new SplitViewDelegate();
			
			newsList = new NewsScreen(this);
			
			newsDetailView = new NewsDetailsScreen(null);
			
			this.ViewControllers = new UIViewController[]
				{newsList, newsDetailView};
		}
Exemple #2
0
        public NewsSplitView()
        {
            View.Bounds = new RectangleF(0, 0, UIScreen.MainScreen.Bounds.Width, UIScreen.MainScreen.Bounds.Height);
            Delegate    = new SplitViewDelegate();

            newsList = new NewsScreen(this);

            newsDetailView = new NewsDetailsScreen(null);

            this.ViewControllers = new UIViewController[]
            { newsList, newsDetailView };
        }