Each table view must have a delegate and a data source.
Delegate Methods
None of the delegate methods are actually required, however you'll need to implement tableView:didSelectRowAtIndexPath: to handle touches on a table cell:
And other methods are...
// Display customization
- (void)tableVi...