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 Jessy Catterwaul.

Leave a rating/review
Save for later
Comments
Share

Part 2: Files and 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:32
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

In this video you'll combine the two ways you've learned to create URLs. Stick around to the end for a handy tip!

05
Data 4:02
Toggle description

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

String 2:50
Toggle description

Convert between bytes, Data instances, and Strings. They're all easily interchangeable when your data bytes represent Strings using your expected encoding.

Toggle description

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

Toggle description

Images contain a whole lot of data. Let's practice saving it to locations that are more suitable for your app's needs.

Toggle description

Write a method to make it easy to retrieve the PNGs that you've saved in your document directory.

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 3: JSON and Property Lists

Toggle description

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

Toggle description

Create your own Codable type, suitable for use with JSON and Property Lists.

JSON 2:17
Toggle description

Learn what JSON is, so you'll know what to expect when you use it to save your Encodable types.

14
JSON Demo 4:46
Toggle description

Now you can save an instance of your type, using JSON. Let's see how the JSON representation differs from Swift, before we load it back.

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:51
Toggle description

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