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.
Part 2: Files and Data
What is Data, and what does it mean to save it? Find out this action-packed introductory video!
The user's document folder is a great place to store data. Where is it located? The File Manager knows!
Find out what the difference is between a URL and a path, and learn how to create your own useful URLs.
In this video you'll combine the two ways you've learned to create URLs. Stick around to the end for a handy tip!
Save some data! Some Foundation Data! When you've got an array of bytes, you can store them with a Data.
Convert between bytes, Data instances, and Strings. They're all easily interchangeable when your data bytes represent Strings using your expected encoding.
Practice your saving and loading, after converting from String to Data.
Images contain a whole lot of data. Let's practice saving it to locations that are more suitable for your app's needs.
Write a method to make it easy to retrieve the PNGs that you've saved in your document directory.
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
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.
Create your own Codable type, suitable for use with JSON and Property Lists.
Learn what JSON is, so you'll know what to expect when you use it to save your Encodable types.
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.
Create a Codable array, and see if you can save and load it the same way you can with individual instances.
You're sure to build up complex hierarchies of structs, classes, and enums, in your coding journey. Codable's got you covered!
Let's get a taste of working with Property Lists before we dive into what they're made of, in the next video.
Learn what makes up a Property List. Employ your knowledge of JSON to be able to understand how the formats differ.
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.
Review everything you've learned in this section, and find out where your data saving journey might yet take you!