Smeedee.iOS.RadioGroupTableViewController.RadioGroupTableViewController C# (CSharp) Method

RadioGroupTableViewController() public method

public RadioGroupTableViewController ( string headline, IList labels, int selected ) : System
headline string
labels IList
selected int
return System
		public RadioGroupTableViewController(string headline, IList<string> labels, int selected) : base ("RadioGroupTableViewController", null)
		{
			RowSelected = (n) => { };
			TableView.Source = new RadioGroupTableViewSource(this, headline, labels, selected);
			
			TableView.StyleAsSettingsTable();
		}