UITableView Flashcards
Example of 2 messages sent to an UITableViewDelegate
tableView:heightForRowAtIndexPath:
tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:
Example of 2 messages sent to an UITableViewDataSource
tableView:cellForRowAtIndexPath:
numberOfSectionsInTableView:
UITableViewController roles are?
- View controller
- Data source
- Delegate
UITableViewController’s view is an instance of?
UITableView
How does UITableViewController automatically loads a UITableView?
UITableViewController inherits from UIViewController the view method, that loads an UITableView (by calling loadView)
Each row of UITableView is an instance of?
UITableViewCell
When does UITableViewController set its dataSource and delegate variables?
when it creates his view