The interface
Create a new (Single View Application) project in Xcode and name it Movie Night. Save the project in a place on your hard drive where you will be able to locate it again. Remember that the description of how to create a project can be found in Chapter 11, Simon Says.
Then, open Main.storyboard
and select View Controller on the canvas:
Tip
All related source code for this chapter can be found here: https://github.com/swift-book-projects/swift-3-programming-for-kids/tree/master/Chapter-14.
Having selected that, we will press Backspace on the keyboard in order to delete it from the canvas. After deleting that, we will try and find the Table View Controller from the Object Library at the lower right-hand side of Xcode (in the Utilities area):
Next, we will drag a table view controller into the canvas. Then, to ensure that this view will be the first we see when we run our application, we will select our newly added table view controller and ensure...