Modifying the exploreCell collection view cell
Let’s take a look at what the exploreCell
collection view cell looks like in the app tour:
Figure 13.35: The exploreCell collection view cell for the completed Let’s Eat app
In the previous chapter, you set the background color for the exploreCell
collection view cell and configured the collection view to display a grid of 20 cells. You’ll now remove the background color and add user interface elements to the exploreCell
collection view cell to match the design shown in the app tour. Follow these steps:
- Before you begin, check the initial settings for the
exploreCell
collection view cell. SelectexploreCell
in the document outline of the Explore View Controller Scene. Click the Attributes inspector button. Confirm Identifier is set toexploreCell
. Set Background toDefault
:
Figure 13.36: Attributes inspector settings for exploreCell collection view cell
- You’ll...