Let's compare our current location listing with the original design:
We have one thing that needs fixing: the large title. Updating to large titles is simple. Open up the LocationViewController and, inside of the initialize() method, add the following code after manager.fetch():
title = "Select a Location"
navigationController?.navigationBar.prefersLargeTitles = true
In this code, we are setting a new iOS 11 feature, prefersLargeTitles, to true. If you build and run, you will see that we are good here now. Next, we will direct our attention to the restaurant listing page and go into more detail on the iPad and multitasking.