NibManagerTest.ListController.ViewDidLoad C# (CSharp) Method

ViewDidLoad() public method

public ViewDidLoad ( ) : void
return void
        public override void ViewDidLoad()
        {
            base.ViewDidLoad ();

            // Perform any additional setup after loading the view, typically from a nib.
            this.TableData = new List<TableRow>() {

                new TableRow() { RowTitle = "BasicCell", RowSubtitle = string.Empty },
                new TableRow() { RowTitle = "SubtitleCell", RowSubtitle = "Some subtitle" },
                new TableRow() { RowTitle = "CustomCell", RowSubtitle = string.Empty }

            };

            this.tableView.Source = new TableSource(this);
        }