Exploring the ShareOrder app
The app you will be working on, ShareOrder, is a simple app that records and displays what you want to order at a restaurant. Let's build and run this app to see how it works. Follow these steps:
- If you have not already done so, download the
Chapter25folder of the code bundle for this book at this link: https://github.com/PacktPublishing/iOS-15-Programming-for-Beginners-Sixth-Edition. - Open the
Chapter25folder, and you'll see two folders,ShareOrder-startandShareOrder-complete. The first folder contains the app that you will be modifying for this lesson, and the second contains the completed app. - Open the
ShareOrder-startfolder and open theShareOrderXcode project. Click on theMainstoryboard file in the Project navigator. You should see a + button in the navigation bar and a table view filling the rest of the screen.
Figure 25.1: ShareOrder app with Main storyboard file displayed
The app will...