iPad Split View Controller - Master View and Detail View contain TableViews
I've managed to read some values into a table view and display them in the Master View of a SplitViewController.
What I would like to do is to tap on a row of the Master View and display the details on the detailViewController but in a TableView.
When I tap on the row in the MasterView table, I can't seem to get the detai开发者_如何学编程l to populate the detailview TableView.
I managed to resolve this issue. In the didSelectRowAtIndexPath section of the RootViewController class I used [self.tableView reloadData]; and it works perfectly.
精彩评论