In the previous chapter, you configured the Explore screen so that it displayed 20 empty collection view cells in a collection view, added a button to the collection view section header to present a view representing the Locations screen modally, and added a Cancel button to dismiss this view.
In this chapter, you will implement the remaining screens that were shown in the app tour shown in Chapter 9, Setting Up the Basic Structure.
First, you'll add a blank table view to the Locations screen.
Next, you'll add the Restaurant List screen. This will be displayed when a cell in the Explore screen is tapped. This screen will contain a collection view with a single collection view cell.
After that, you'll add the Restaurant Detail screen. This will be displayed when the cell in the Restaurant List screen is tapped. This...