Learn the basics of Core Data in this beginner series. You’ll learn how to model your data with attributes and relationships, save data using a context, display saved data in lists and much more, in both SwiftUI and UIKit…
iOS & Swift
The Core Data Stack
Jul 19 2022 · Lesson
Take a high level tour of the Core Data stack and understand what Core Data…
iOS & Swift
Creating Managed Objects
Jul 19 2022 · Lesson
Understand what managed object subclasses are and how you can use them in code to represent your Core Data model…
iOS & Swift
Managed Object Model
Jul 19 2022 · Lesson
Understand how Core Data represents an app’s data model using managed objects
iOS & Swift
Creating a Core Data Model
Jul 19 2022 · Lesson
Learn what an Entity is in the Core Data framework and how you can add attributes to model your data…
iOS & Swift
Introduction
Jul 19 2022 · Lesson
What is Core Data? Find out how it is used to store data in your apps…
iOS & Swift
Setting Up the Stack
Jul 19 2022 · Lesson
Create a Core Data stack for use in the RocketLaunches…
iOS & Swift
Conclusion
Jul 19 2022 · Lesson
Wrap up this course by reviewing what you’ve learned about the core data stack, creating data models and persisting entities. Also find out where to go next…
iOS & Swift
Managed Object Context
Jul 19 2022 · Lesson
Core Data needs to keep track of changes to the managed object model and it does this using a managed object context. Get a high level understanding of how a context is used in this episode…
iOS & Swift
Conclusion
Jul 19 2022 · Lesson
Wrap up this section by reviewing what you’ve learned about the Core Data stack, and find out what’s coming up in the next section…
iOS & Swift
Inserting Data Into the Context
Jul 19 2022 · Lesson
Now that you have a RocketLaunch class you can use learn how to populate it and save data to the persistent store.
iOS & Swift
Challenge: Customizing the RocketLaunch Entity
Jul 19 2022 · Lesson
In this challenge complete the RocketLaunch entity by adding attributes to define your data model.
iOS & Swift
Persistent Store Coordinator
Jul 19 2022 · Lesson
Understand how the persistent store coordinator facilitates communication between the context and underlying data store.
iOS & Swift
Introduction
Jul 19 2022 · Lesson
In this episode, you’ll get a look at this part of the course, which covers how to create a data model and save data…