We need to be able to send the selected city back to our ExploreViewController. Therefore, we need a selected city, as well, unwind for the Done button inside ExploreViewController. First, let's get our selected city to display in our Explore view:
- Add the following variable under the constant manager in our ExploreViewController.swift file:
var selectedCity:LocationItem?
var headerView: ExploreHeaderView!
- Next, open Explore.storyboard and select the Explore Header View in the Outline view:
![](assets/d1fab79b-128d-4ce4-a673-455a401f4ea0.png)
- Then, select the Connections inspector in the Utilities Panel, and click and drag lblLocation from the empty circle under Outlets to the label in the Explore View Controller Header scene:
![](assets/9c4e18b5-e774-476e-a2b3-8d1887991032.png)
Next, let's unwind our Done button in our Explore View Controller.