Mercurial > public > geoquiz
view GeoQuiz/Logic/DataController.swift @ 15:f1967f8cc67b
first iteration of core data
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Wed, 19 Oct 2022 10:04:17 +0200 |
parents | |
children |
line wrap: on
line source
// // DataController.swift // GeoQuiz // // Created by Dennis Concepción Martín on 19/10/22. // import CoreData import Foundation class DataController: ObservableObject { let container = NSPersistentContainer(name: "GeoQuiz") init() { container.loadPersistentStores { description, error in if let error = error { print("Core Data failed to load: \(error.localizedDescription)") } } } }