This chapter puts everything you've learned so far about server-side Swift together and uses an iOS app to show how a client "travel journal" app can leverage the login, database, and other cloud services you built with a Swift web framework. You'll first get started with building a travel journal iOS app, adding logic and UI components to the app design. You'll create a model for journal data and add the support of CRUD operations for the PostgreSQL database on the server. At the end of this chapter, you'll have a functional travel journal app that works seamlessly with your web services.
You're going to have learned about the following topics after finishing this chapter:
- Creating a table view controller in an iOS application
- Constructing a data model using the Codable protocol
- Adding content to the table view controller...