0Pricing
SwiftUI Academy · Урок

Стек Core Data

Настройте сохраняемые контейнер и контекст.

«Стек Core Data» — бесплатный урок SwiftUI Academy на CoddyKit. Это урок 1 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения SwiftUI Academy, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс SwiftUI Academy содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Meet Core Data

Core Data is Apple's mature framework for saving structured app data on the device, so your records survive after the app closes. 💾

What the Stack Is

The Core Data stack is the small set of objects that work together to load your data model and read or write records.

The Data Model File

Your entities live in a .xcdatamodeld file, a visual schema where you define the types and attributes Core Data will store.

The Persistent Container

The NSPersistentContainer wraps the whole stack: it loads your model and sets up the underlying storage for you.

let container = NSPersistentContainer(name: "MyApp")

Loading the Stores

Call loadPersistentStores to open the database. Its closure tells you whether the store opened or failed.

container.loadPersistentStores { _, error in
    if let error { fatalError("\(error)") }
}

The View Context

The viewContext is your in-memory scratchpad for objects on the main thread, where you create, edit, and read records.

let context = container.viewContext

A Reusable Controller

Most apps wrap the stack in one small controller class, so the rest of the app shares a single, ready-to-use context.

Injecting the Context

Pass the context into SwiftUI through the environment, so any view can reach it without manual hand-offs.

.environment(\.managedObjectContext, context)

Saving Work

Changes stay in memory until you call save on the context, which writes everything to disk in one step.

try context.save()

Why One Stack

Sharing a single stack keeps every view looking at the same data, so nothing falls out of sync across screens.

Set It Up Early

Build the stack once at app launch and hold onto it, so the container is ready before any screen needs data.

Quick Check

You set up the stack. One quick question about the pieces.

Recap

You met the Core Data stack: a model file, a persistent container, and a view context you inject into SwiftUI to read and save data. ✨

Часто задаваемые вопросы

Урок «Стек Core Data» бесплатный?

Да — полный текст урока «Стек Core Data» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс SwiftUI Academy, подпишись на CoddyKit PRO. Курс SwiftUI Academy содержит 4 уроков всего.

Чему я научусь в уроке «Стек Core Data»?

Настройте сохраняемые контейнер и контекст. Ты практикуешь SwiftUI Academy с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать SwiftUI Academy?

Предыдущий опыт не требуется. SwiftUI Academy на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 1 из 4.

Сколько времени занимает урок «Стек Core Data»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке SwiftUI Academy?

Да. Каждый урок SwiftUI Academy включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Стек Core Data
  2. Получение данных с @FetchRequest
  3. Создание и сохранение сущностей
  4. Предикаты и описатели сортировки
← Назад к SwiftUI Academy