💬

CoreDataのエンティティを変更した場合

2024/02/16に公開

CoreDataのエンティティのマイグレーションを有効にする

Persistence.swiftおよび、PersistenceController内のinit()内に以下のコードを加筆する

let description = NSPersistentStoreDescription()
        description.shouldMigrateStoreAutomatically = true
        description.shouldInferMappingModelAutomatically = true
        container.persistentStoreDescriptions = [description]

これがないとプレビューがクラッシュする
知らないといけないことが多すぎる・・・

Discussion