Earlier in this series, you learned what Core Data is and isn't. This episode zooms in on the building blocks of the Core Data framework.

Star Players

It's key that you understand how the various classes that make Core Data tick play together. The star players of the Core Data framework are:

  • the managed object model
  • the managed object context
  • and the persistent store coordinator

This diagram shows how these classes relate to one another. We'll use this diagram as a guideline in this episode.

Core Data Stack

Managed Object Model

The managed object model is an instance of the NSManagedObjectModel class. A typical Core Data application has one instance of the NSManagedObjectModel class, but it's possible to have multiple. The NSManagedObjectModel instance represents the data model of the Core Data application.

This diagram shows that the managed object model is connected to the data model. The data model is represented by a file in the application bundle that contains the data schema of the application. This is something we revisit later in this series when we start working with Core Data.

Managed Object Model

The data schema is nothing more than a collection of entities. An entity can have attributes and relationships, which make up the data model of the application.

We explore the data model in more detail later. For now, remember that the managed object model is an instance of the NSManagedObjectModel class and that it represents the data model of the Core Data application.

Managed Object Context

A managed object context is represented by an instance of the NSManagedObjectContext class. A Core Data application has one or more managed object contexts. Each managed object context manages a collection of model objects, instances of the NSManagedObject class.

The managed object context receives the model objects through a persistent store coordinator as you can see in this diagram. A managed object context keeps a reference to the persistent store coordinator of the application.

Managed Object Context

The managed object context is the object you interact with most. It creates, reads, updates, and deletes model objects. From a developer's perspective, the NSManagedObjectContext class is the workhorse of the Core Data framework.

Persistent Store Coordinator

The persistent store coordinator is represented by an instance of the NSPersistentStoreCoordinator class and it plays a key role in every Core Data application.

Persistent Store Coordinator

While it's possible to have multiple persistent store coordinators, most applications have only one. Very, very rarely is there a need to have multiple persistent store coordinators in an application.

The persistent store coordinator keeps a reference to the managed object model and every parent managed object context keeps a reference to the persistent store coordinator.

You may be wondering what a parent managed object context is. Later in this series, we take a closer look at parent and child managed object contexts. Don't worry about it for now.

The diagram also tells us that the persistent store coordinator is connected to one or more persistent stores and that brings us to the question "What is a persistent store?"

Remember that Core Data manages an object graph. The framework is only useful if the persistent store coordinator is connected to one or more persistent stores.

Out of the box, Core Data supports three persistent store types:

  • a SQLite database
  • a binary store
  • and an in-memory store

Each persistent store type has its pros and cons. Most applications use a SQLite database as their persistent store. As we saw in the previous episode, SQLite is lightweight and very fast. It's ideal for mobile and desktop applications.

Now that we know what the Core Data stack consists of, it's time to explore how it operates in an application.

How Does Core Data Work

The heart of the Core Data stack is the persistent store coordinator. It is instantiated first when the Core Data stack is created.

The persistent store coordinator is instantiated first.

But to create the persistent store coordinator, we need a managed object model. Why is that? The persistent store coordinator needs to know what the data schema of the application looks like.

The persistent store coordinator needs a managed object model.

After setting up the persistent store coordinator and the managed object model, the workhorse of the Core Data stack is initialized, the managed object context. Remember that a managed object context keeps a reference to the persistent store coordinator.

The managed object context is the workhorse of the Core Data stack.

With the Core Data stack set up, the application is ready to use the framework to interact with the application's persistent store. In most cases, your application interacts with the persistent store coordinator through the managed object context.

Your application interacts with the persistent store coordinator through the managed object context.

You will rarely, if ever, directly interact with the persistent store coordinator or the managed object model. As I mentioned earlier, the NSManagedObjectContext class is the class you interact with most frequently.

The managed object context is used to create, read, update, and delete records. When the changes made in the managed object context are saved, the managed object context pushes them to the persistent store coordinator, which sends the changes to the corresponding persistent store.

The managed object context pushes changes to the persistent store coordinator, which sends them to the persistent store.

If your application has multiple persistent stores, the persistent store coordinator figures out which persistent store needs to store the changes of the managed object context.

Why Not NSPersistentContainer

People often ask me why I don't show them how to use the new NSPersistentContainer class. Why do I show you how to manually set up a Core Data stack?

The NSPersistentContainer class is a wonderful addition to the framework. It encapsulates the nitty-gritty details of setting up and managing a Core Data stack. While that is nice, it doesn't mean you don't need to know how the Core Data stack does its work under the hood.

By setting up a Core Data stack from scratch, which isn't rocket science, you learn everything you need to know about Core Data to correctly use the NSPersistentContainer class. It also prepares you for some of the problems you face down the road.

In short, learn the isn and outs of the framework first and then decide if you want to use the NSPersistentContainer class in your projects.

Time to Write Code

You now know what Core Data is and how the Core Data stack is set up. It's time to write code. In the next episodes, we create a Core Data stack and explore the classes we discussed in this episode.