Swift CoreData let entity = NSEntityDescription.entityがnilでクラッシュする
大まかな実装の手順の記事紹介
こちらがかなり詳細でよかったです。
データ型を生成してすぐにInsertしないでデータを入れてからInsertする方法を試行していた所、はまったので解決方法を記載しておきます。
解決方法:AppDelegateを修正する
// MARK: - Core Data stack
lazy var persistentContainer: NSPersistentContainer = {
/*
The persistent container for the application. This implementation
creates and returns a container, having loaded the store for the
application to it. This property is optional since there are legitimate
error conditions that could cause the creation of the store to fail.
*/
let container = NSPersistentContainer(name: "xcdatamodeld名")...
上記記事のように"xcdatamodeld名"
で書いてあげないとダメですね。
これを直したら通りました。
Author And Source
この問題について(Swift CoreData let entity = NSEntityDescription.entityがnilでクラッシュする), 我々は、より多くの情報をここで見つけました https://zenn.dev/tanukidevelop/articles/d16fd85d84ffdb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol