NSPersistentContainer не инициализирован
Я добавил CoreData в существующий проект и не могу получить NSPersistentContainer
Инициализировать. Вот мой код в делегате приложения:
var persistentContainer: NSPersistentContainer = {
let container = NSPersistentContainer(name: "TimeConverter")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
Приложение вылетает, только когда я пытаюсь сохранить managedObjectContext. Ошибка (в приложении делегат):
Thread 1: signal SIGABRT
почему он не инициализируется?
func saveContext ()
{
let context = persistentContainer.viewContext
if context.hasChanges {
do {
try context.save()
} catch {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
let nserror = error as NSError
fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
}
}
}
Кроме того, здесь это называется в viewcontroller
func save(event: String,fromCourse:String,toCourse:String,fromTime:String,convertedTime: String)
{
guard let appDelegate = UIApplication.shared.delegate as? AppDelegate
else
{
return
}
let managedContext = appDelegate.persistentContainer.viewContext
let entity = NSEntityDescription.entity(forEntityName: "ConversionHistory",
in: managedContext)!
let conversion = NSManagedObject(entity: entity,
insertInto: managedContext);
conversion.setValue(event, forKeyPath: "event")
conversion.setValue(fromCourse, forKeyPath: "fromCourse")
conversion.setValue(toCourse, forKeyPath: "toCourse")
conversion.setValue(fromTime, forKeyPath: "fromTime")
conversion.setValue(convertedTime, forKeyPath: "toTime")
do
{
try managedContext.save()
// people.append(person)
} catch let error as NSError
{
print("Could not save. \(error), \(error.userInfo)")
}
}