In Main.storyboard, select the small box inside of your Collection View. The small box is your Collection View prototype cell:
- Open the Attributes inspector in the Utilities Panel.
- Update the following:
-
- Identifier: restaurantCell
- Background: Demo Grey
- Control + drag from the explore cell to Restaurant View Controller:
![](https://static.packt-cdn.com/products/9781789348668/graphics/assets/76d928bc-b954-48ee-ba87-a3c76b7e1391.png)
- When you let go, you are presented with the following menu—select Show:
![](https://static.packt-cdn.com/products/9781789348668/graphics/assets/6271274a-3939-4424-927f-9462697ee3a6.png)
Now, let's run the project by hitting the Play button (or using Command + R). You will now be able to tap on an explore cell and see the following:
![](https://static.packt-cdn.com/products/9781789348668/graphics/assets/f9cbe765-bbd8-4297-908f-64fd42137d36.png)
Next, we want the user to be presented with the restaurant's details when they touch a restaurant. We will use a static Table View Controller to do our detail. Using a static Table View allows us to create content without code. We will still have to hook up our data but, in the upcoming chapters...