StoryboardTable.MasterViewController.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);

			// bind every time, to reflect deletion in the Detail view
			TableView.Source = new RootTableSource(chores.ToArray ());
		}