Let's take a look at what the restaurantCell collection view cell looks like in the app tour:
As you can see, restaurantCell has many elements. You will now modify restaurantCell to match the design shown in the app tour. A summary of the changes required is as follows:
- Change the size of restaurantCell to make it larger and change the background color to white.
- Add a view, then add a label and a stack view containing three buttons to show the available reservation times.
- Add a view, then add an image view to it in order to show a picture of the restaurant.
- Add a label at the top-left corner to show the restaurant's name.
- Add a label just under the name label to show the restaurant's address.
You'll be using the Size inspector to position all of the elements, and this will make it easier to add the necessary...