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
Chapter25
folder of the code bundle for this book at this link: https://github.com/PacktPublishing/iOS-15-Programming-for-Beginners-Sixth-Edition. - Open the
Chapter25
folder, and you'll see two folders,ShareOrder-start
andShareOrder-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-start
folder and open theShareOrder
Xcode project. Click on theMain
storyboard file in the Project navigator. You should see a + button in the navigation bar and a table view filling the rest of the screen.
The app will...