In this chapter, you learned about table views and table view controllers, and you implemented a view controller for a table view in a playground.
Next, you implemented LocationsViewController, a table view controller for the Locations screen, and created a .plist file from scratch called Locations.plist to hold a list of locations. You created a data manager, LocationsDataManager, to read data from the .plist file. Finally, you configured LocationsViewController in order to get data from LocationsDataManager and provide it to the table view so that the Locations screen displays a list of restaurant locations. Awesome!
Now that you've completed this chapter, you know how to create a table view controller and link it to a table view, as well as how to create a .plist file and use the table view to display its data. You should now be able to implement table views...