Filters

Hide filters
Platform
Content Type
Difficulty

iOS & Swift · 14 Results

Contained in: Core Data: Fundamentals core data iOS & Swift
iOS & Swift
Core Data: Fundamentals
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

Take a high level tour of the Core Data stack and understand what Core Data
iOS & Swift

Creating Managed Objects

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

Understand how Core Data represents an app’s data model using managed objects
iOS & Swift

Creating a Core Data Model

Learn what an Entity is in the Core Data framework and how you can add attributes to model your data
iOS & Swift

Introduction

What is Core Data? Find out how it is used to store data in your apps…
iOS & Swift

Setting Up the Stack

Create a Core Data stack for use in the RocketLaunches…
iOS & Swift

Conclusion

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

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

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

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

In this challenge complete the RocketLaunch entity by adding attributes to define your data model.
iOS & Swift

Persistent Store Coordinator

Understand how the persistent store coordinator facilitates communication between the context and underlying data store.
iOS & Swift

Introduction

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