iOS 16.1, Xcode 14.1, Swift 5, UIKit 환경에서 진행했습니다. CREATE 생성코드 func createData(noteModel: NoteModel) { let appDelegate = UIApplication.shared.delegate as! AppDelegate let context = appDelegate.persistentContainer.viewContext let entity = NSEntityDescription.entity(forEntityName: "Note", in: context) if let entity = entity { let note = NSManagedObject(entity: entity, insertInto: context) note.setV..