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 learn more about table views, visit https://developer.apple.com/documentation/uikit/uitableview.
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 learn more about the UITableViewDataSource protocol, visit https://developer.apple.com/documentation/uikit/uitableviewdatasource.
To allow users to interact with a table view, view controllers for a table view must conform to the UITableViewDelegate protocol and implement the desired methods.
To learn more about the UITableViewDelegate protocol, visit https://developer.apple.com/documentation/uikit...