Saving Data in iOS

Find out where and how to save data in iOS! This course explores common methods for persisting user data, all from within Xcode Playgrounds. By Catie Catterwaul & Jessy Catterwaul.

Leave a rating/review
Save for later
Comments
Share

Part 1: Files & Data

01
Toggle description

What is Data, and what does it mean to save it? Find out this action-packed introductory video!

Toggle description

The user's document folder is a great place to store data. Where is it located? The File Manager knows!

Paths 3:21
Toggle description

Find out what the difference is between a URL and a path, and learn how to create your own useful URLs.

Toggle description

Combine the two ways you've learned to create URLs. Stick around to the end for a handy tip!

Data 5:20
Toggle description

Save some data! Some Foundation Data! When you've got an array of bytes, you can store them with a Data.

String 3:11
Toggle description

Convert back and forth from bytes, Data instances, and Strings. They're all easily interchangeable as long as your data bytes use the encoding you expect.

Toggle description

Practice your saving and loading, after converting from String to Data.

Conclusion 0:44
Toggle description

Quickly review what core concepts should feel solid by this point. We'll go over what they'll prepare you for, in the next section.

Part 2: JSON & Property Lists

Toggle description

If the previous section was handy for you, this one probably will be as well! This video will let you know how we'll be building on what you learned there.

JSON 9:58
Toggle description

Learn what JSON is, and get comfortable decoding it for use in Swift. Then you'll be prepared for saving your own JSON, later!

Toggle description

Take your saving skills to an iOS app, where you'll investigate where your data will be saved and how your users can interact with it.

Toggle description

Create your own Codable type, suitable for use with JSON and Property Lists. How does the JSON representation differ from Swift?

Toggle description

Create a Codable array, and see if you can save and load it the same way you can with individual instances.

Toggle description

You're sure to build up complex hierarchies of structs, classes, and enums, in your coding journey. Codable's got you covered!

Toggle description

Let's get a taste of working with Property Lists before we dive into what they're made of, in the next video.

Toggle description

Learn what makes up a Property List. Employ your knowledge of JSON to be able to understand how the formats differ.

Toggle description

Examine the files you stored in the Property List challenge. Also, learn about a few encoding options and how they affect what you can save.

Conclusion 1:56
Toggle description

Review everything you've learned in this section, and find out where your data-saving journey might yet take you!