I made a static table view to be embed in a container view, the problem is that when the application start in the parent view controller the table view is scrolled down trunking the last item.I would like to see the first 3 items.
Here what i did try in the parent AND in the child view controller without any sucess :
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
//Juste une section pour cette table static
int rowCount = TableView.NumberOfRowsInSection(0);
NSIndexPath path = NSIndexPath.FromRowSection(rowCount - 1,0);
TableView.ScrollToRow(path, UITableViewScrollPosition.Top, false);
//TableView.ScrollEnabled = false;
}
Here is an image of my problem :
Thanks!!