如何在 Swift 中进行轻量级 CoreData 迁移

Posted

技术标签:

【中文标题】如何在 Swift 中进行轻量级 CoreData 迁移【英文标题】:How to Do a Lightweight CoreData Migration in Swift 【发布时间】:2016-01-20 23:35:24 【问题描述】:

我正在尝试我的第一个轻量级 CoreData 迁移。我阅读了两篇关于轻量级迁移的指南。两者都将代码添加到 CoreDataStack 类,修改 NSPersistentStoreCoordinator 等变量并添加:

let mOptions = [NSMigratePersistentStoresAutomaticallyOption: true,
    NSInferMappingModelAutomaticallyOption: true]

我的问题是我有一个使用 CoreData 的完美运行的应用程序,但我没有那个类或类似的东西。 我的问题是,为什么这些项目假设我有这个类,没有它我可以实现我的轻量级迁移吗?如果没有,如何添加?

更多信息,如果需要回答

9 月,我使用 CoreData 构建了一个应用程序。这是我第一次使用 CoreData,我遵循了这个 Ray Wenderlich 指南。效果很好,我完成了应用程序,它现在在商店里。现在我想开始对应用程序进行一些更改,其中涉及新的 CoreData 属性和一些新实体。我读过我需要设置一个新的模型版本。

我找到了一个Ray Wenderlich guide,但它使用了我没有的这个 CoreDataStack.swift 文件:

令人沮丧的是,我使用 他们的 指南设置了 CoreData,但它没有包含该文件!然后我去做一个迁移,他们认为我有它。

我去寻找另一种轻量级迁移方法,找到了这个alternative,它也引用了我从未内置到我的 CoreData 中的代码:

lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator? = 
// The persistent store coordinator for the application. This implementation creates and return a coordinator, having added the store for the application to it. This property is optional since there are legitimate error conditions that could cause the creation of the store to fail.
// Create the coordinator and store
var coordinator: NSPersistentStoreCoordinator? = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
let url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("MyLog.sqlite")
var error: NSError? = nil
var failureReason = "There was an error creating or loading the application's saved data."
if coordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: nil, error: &error) == nil 
    coordinator = nil
    // Report any error we got.
    var dict = [String: AnyObject]()
    dict[NSLocalizedDescriptionKey] = "Failed to initialize the application's saved data"
    dict[NSLocalizedFailureReasonErrorKey] = failureReason
    dict[NSUnderlyingErrorKey] = error
    error = NSError(domain: "YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
    // Replace this with code to handle the error appropriately.
    // abort() 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.
    NSLog("Unresolved error \(error), \(error!.userInfo)")
    abort()

所以我已经阅读了指南并理解了 90% 的教程。我只需要有人看一下原始的 CoreData 教程并告诉我,如果我没有 CoreData 类,我会在哪里添加轻量级代码,例如:

let mOptions = [NSMigratePersistentStoresAutomaticallyOption: true,
    NSInferMappingModelAutomaticallyOption: true]

【问题讨论】:

【参考方案1】:

需要在将持久存储添加到持久存储协调器的调用中使用迁移选项。通过搜索addPersistentStoreWithType,您将很容易找到这行代码。

try coordinator!.addPersistentStoreWithType(
     NSSQLiteStoreType, configuration: nil, URL: url, options: mOptions)

您的核心数据堆栈很可能位于 AppDelegate 类中,但无论它在哪里,您都必须在此处添加迁移选项。

【讨论】:

谢谢!凌晨 1 点,但会在早上尝试,如果有效,则标记为正确。你有没有机会对我提到的那个课程有所了解?为什么在那个教程中,持久化存储是由类来处理的? 谢谢,这似乎奏效了。我没有得到我在教程中看到的显示迁移的控制台打印输出,但是我添加了属性和实体,然后运行了应用程序并且没有任何问题。

以上是关于如何在 Swift 中进行轻量级 CoreData 迁移的主要内容,如果未能解决你的问题,请参考以下文章

Swift 3 / iOS 10,正确使用核心数据

在 Swift 上使用 CoreData 使用 Fetch Request 进行查询

如何使用 Swift 删除 coredata 中的特定记录?

在 Swift 中使用 NSPredicate 对 CoreData 结果进行排序

如何使用 Swift 从 CoreData sqlite 表中获取特定的行数据

这个 CoreData 如何在 swift 3 中获取?