0
NSPersistentContainerを作成してデータを保存していますが、コンテキスト上でsave()
を呼び出すとデータベースファイルが作成されません。NSPersistentContainerはデータベースファイルを作成しません
私はあるNSPersistentContainerを作成するために使用していたコード:私はNSPersistentStoreDescription経由で自動移行オプションを設定すると問題になると、コンテナはデフォルトのストア・ファイル・パスを使用することwouldntのことを期待していた
let container = NSPersistentContainer(name: "Model")
let description = NSPersistentStoreDescription()
description.shouldInferMappingModelAutomatically = true
description.shouldMigrateStoreAutomatically = true
container.persistentStoreDescriptions = [description]
container.loadPersistentStores { ... }