In this chapter, you added a .plist file, ExploreData.plist, to your project. You implemented ExploreItem, the model objects for the Explore screen. You created a data manager, ExploreDataManager, to read data from ExploreData.plist, put the data into an array of ExploreItem instances, and provide it to ExploreViewController.
Finally, you created a view controller for exploreCell and configured the data source methods in ExploreViewController to set the values to be displayed by exploreCell in the collection view for the Explore screen. The Explore screen now displays a list of cuisines. Great job!
You should now know how to provide data to an app using .plist files, create model objects, create data manager classes that load .plist files into model objects, configure collection views to display data that has been loaded, and configure view controllers for collection views...