Как синхронизировать новый объект Core Data через граф данных с кодом?
Я просто хочу добавить сущность в существующий граф данных NSManagedObject и получить доступ к этой сущности в коде. В этом случае я добавил "Адрес":
Существующий код работает. Я просто добавил:
let address = Address(context:self.context!)
... как изначально было сделано с лицом Person().
Вот код:
func application(_ application: UIApplication, didFinishLaunchingWithOptions
launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
self.context = persistentContainer.viewContext
let storyboard = self.window?.rootViewController?.storyboard
guard let vc = storyboard?.instantiateViewController(withIdentifier: "RootViewController") as? RootViewController
else { fatalError("Cannot instantiate root view controller") }
vc.context = self.context
self.window?.rootViewController = vc // Note: necessary to keep the app del's context instance within vc.
let address = Address(context:self.context!)
let person = Person(context: self.context!)
person.firstName = "Foo"
person.lastName = "Bar"
person.cars = NSSet(array: [
Car(context: self.context!).configured(maker: "VW",
model: "Sharan",
owner: person),
Car(context: self.context!).configured(maker: "VW",
model: "Tiguan",
owner: person)
])
do{
try saveContext()
} catch {
//something bad happened, handle this situation appropriately
}
return true
}
Вопрос: Как сделать так, чтобы код видел новую сущность "Адрес"?