You have accomplished a lot in this chapter. You started by learning about APIs and the JSON format, and you created RestaurantAPIManager, a data manager that can load data from JSON files for use in the LetsEat app. Next, you configured LocationViewController to store the location selected by the user and pass it to ExploreViewController when the Done button is tapped. After that, you configured ExploreViewController to pass the selected location and cuisine to RestaurantListViewController when a type of cuisine is selected. Then, you created a second data manager called RestaurantDataManager, which uses the latest methods to get data from JSON files. You configured MapViewController to get data from RestaurantDataManager to display a list of restaurants on the Map screen.
Finally, you configured RestaurantListViewController to get a list of restaurants from RestaurantDataManager...