The Let's Eat app uses a table view in the Locations screen to display a list of restaurant locations. A table view presents table view cells using rows arranged in a single column.
To provide data to be displayed by a table view, view controllers for a table view must conform to the UITableViewDataSource protocol and implement the required methods.
To allow users to interact with a table view, view controllers for a table view must conform to the UITableViewDelegate protocol and implement ...