核心数据 NSPersistentStoreCoordinator 中止来电,SWIFT
Posted
技术标签:
【中文标题】核心数据 NSPersistentStoreCoordinator 中止来电,SWIFT【英文标题】:Core Data NSPersistentStoreCoordinator Abort From Incoming Phone Call, SWIFT 【发布时间】:2016-08-19 22:00:23 【问题描述】:我花了很多时间让我的 Core Data 模型在开发中的 ios 应用程序中高效运行。在大多数情况下,我的一切工作都很顺利,但前几天我在加载数据时遇到了一个独特的错误,这只是偶然。我刚开始在我的 iPhone 上运行我的应用程序进行测试,就在它启动并开始使用 Core Data 加载数据时,我姐姐打电话给我。时机相当偶然,因为该中断似乎从AppDelegate
中的persistentStoreCoordinator
调用了abort()
函数。
这是我所指的代码:
lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator =
// The persistent store coordinator for the application. This implementation creates and returns 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
let coordinator = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
let url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("DataModel.sqlite")
var failureReason = "There was an error creating or loading the application's saved data."
let mOptions = [NSMigratePersistentStoresAutomaticallyOption: true,
NSInferMappingModelAutomaticallyOption: true]
do
try coordinator.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: mOptions)
catch
// 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 as NSError
let wrappedError = 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 \(wrappedError), \(wrappedError.userInfo)")
abort() // THIS
return coordinator
()
显然,我看到 Apple 在哪里评论说 abort()
函数只需要在开发期间使用,并且应该在生产中删除一次,但我想知道是否有人可以告诉我如何正确处理此类错误?
我没有加载大量数据,我想在这种情况下我需要做的就是重新开始加载过程。
我想我真正要问的只是,一旦发现错误,是否有简单的方法告诉它重试,还是我必须手动回到我在应用启动时调用数据获取的方式?
【问题讨论】:
您可以尝试按照Core Data Programming Guide 中的示例代码将addPersistentStoreWithType
调用放入dispatch_async
。它可能避免这个问题。
这是可重复的吗?您可以在调试时触发它吗?什么是异常消息广告堆栈?
@Wain - 很抱歉花了这么长时间才回复您的评论。无论如何,这个问题似乎完全是随机的。起初,当我通过 xCode 在手机上运行我的应用程序时接到来电时,它再次发生在我身上,我无缘无故地指出。该错误实质上是“持久存储迁移期间发生错误”,然后是“原因=无法替换目标数据库”。这可能来自操纵我的数据模型吗?我的选项设置如下:NSMigratePersistentStoresAutomaticallyOption
和 NSInferMappingModelAutomaticallyOption
设置为 true。
嘿,你知道崩溃发生的原因吗?我也在同样的情况下遇到崩溃。我有 3 台 iphone 设备要测试,但崩溃只发生在 iphone 6S 中。
【参考方案1】:
您可以重试,但通常没有意义。如果添加持久性存储失败,通常没有机会再加载它,因为数据已损坏或无法读取。剩下的唯一选择是删除现有文件,创建一个新文件,然后(如果可用)从您可能使用的任何云服务中恢复数据。
但是,如果您认为值得再试一次。再次调用addPersistentStoreWithType
,使用相同的参数,看看它是否有效。检查返回值——如果它不是 nil 并且没有抛出错误,那么你就可以开始了。在您从这个惰性 var 初始化返回之前,您可以根据需要多次调用该方法。
【讨论】:
谢谢,我会试试你的建议。我使用 Apple 的CloudKit
在云中备份了我的所有用户数据,到目前为止,这对我来说效果很好,我想避免走这条路的唯一原因是,如果他们不这样做,用户就会不走运当时获得手机服务或wifi。在走这条路之前,我会尝试所有选择。这个问题很难测试,因为我必须完美地计时。以上是关于核心数据 NSPersistentStoreCoordinator 中止来电,SWIFT的主要内容,如果未能解决你的问题,请参考以下文章