Modifying App Screens
In the previous chapter, you implemented all the screens required for your app, but the scenes for the Journal List, Add New Journal Entry, and Journal Entry Detail screens still need work.
In this chapter, you’ll modify and configure the Journal List, Add New Journal Entry, and Journal Entry Detail screens to match the design shown in the app tour.
For the Journal List screen, you’ll modify the journalCell
table view cell by adding an image view and two labels to it, so that it can display the photo, date, and title of a journal entry. For the Add New Journal Entry screen, you’ll modify it by adding a custom view, a switch, a text field, a text view, and an image view, so that you can enter the details of a new journal entry. You’ll also configure the image view to show a default image. For the Journal Entry Detail screen, you’ll add a text view, labels, and image views to it and configure the image views to show default...