Я выполняю миграцию CoreData, используя NSEntityMigrationPolicy
, мне нужно создать связь между текущей моделью и моделями, созданными во время миграции. Я создаю новые модели в createDestinationInstances
из данных, предоставленных текущей моделью, но когда я пытаюсь установить отношения, я получаю эту ошибку desired type = NSManagedObject; given type = __NSSingleObjectSetI
Отношение один ко многим
override func createDestinationInstances(forSource sInstance: NSManagedObject, in mapping: NSEntityMapping, manager: NSMigrationManager) throws {
let sourceAttributeKeys = Array(sInstance.entity.attributesByName.keys)
let sourceAttributeValues = sInstance.dictionaryWithValues(forKeys: sourceAttributeKeys)
guard let baseRelativeUrlString = sourceAttributeValues["baseRelativeUrlString"] as? String, let fontFileNames = sourceAttributeValues["fontFileNames"] as? [String] else {
try super.createDestinationInstances(forSource: sInstance, in: mapping, manager: manager)
return
}
// Create the destination Note instance
let destinationInstance = NSEntityDescription.insertNewObject(forEntityName: mapping.destinationEntityName!, into: manager.destinationContext)
// Get the destination attribute keys
let destinationAttributeKeys = Array(destinationInstance.entity.attributesByName.keys)
for key in destinationAttributeKeys {
if let value = sourceAttributeValues[key] {
destinationInstance.setValue(value, forKey: key)
}
}
let appSupportUrl = FileSystemManager.appSupportURL
var array = [CustomFontData]()
for fontFileName in fontFileNames {
let url = appSupportUrl.appendingPathComponent(baseRelativeUrlString).appendingPathComponent(fontFileName)
do {
let fontData = try Data(contentsOf: url)
let fontDataName = fontFileName.components(separatedBy: ".")[0]
let customFontData = CustomFontData(context: manager.destinationContext)
customFontData.name = fontDataName
customFontData.data = fontData
array.append(customFontData)
} catch {
debugPrint(#function, error.localizedDescription)
BugHunter.shared.catchError(error, devInfo: [.functionName : #function])
}
}
destinationInstance.setValue(NSSet(array: array), forKey: "fontsData")
manager.associate(sourceInstance: sInstance, withDestinationInstance: destinationInstance, for: mapping)
}