GrowRowTable.GrowRowTableViewController.ViewWillAppear C# (CSharp) Method

ViewWillAppear() public method

public ViewWillAppear ( bool animated ) : void
animated bool
return void
		public override void ViewWillAppear (bool animated)
		{
			base.ViewWillAppear (animated);

			// Initialize table
			TableView.DataSource = new GrowRowTableDataSource(this);
			TableView.Delegate = new GrowRowTableDelegate (this);
			TableView.EstimatedRowHeight = 40f;
			TableView.ReloadData ();
		}