• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 核心数据 NSPersistentStoreCoordinator 中止来电,SWIFT

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:18:34 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我花了很多时间让我的 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() 函数只需要在开发期间使用,并且应该在生产中删除一次,但我想知道是否有人可以告诉我如何正确处理此类错误?

我没有加载大量数据,我想在这种情况下我需要做的就是重新开始加载过程。

我想我真正要问的是,一旦发现错误,是否有简单的方法告诉它重试,还是我必须手动返回到我在应用启动时调用数据获取的方式?



Best Answer-推荐答案


您可以重试,但通常没有意义。如果添加持久存储失败,通常没有机会再加载它,因为数据已损坏或无法读取。剩下的唯一选择是删除现有文件,创建一个新文件,然后(如果可用)从您可能使用的任何云服务中恢复数据。

但是,如果您认为值得再试一次。使用相同的参数再次调用 addPersistentStoreWithType 并查看它是否有效。检查返回值——如果它不是 nil 并且没有抛出错误,那么你就可以开始了。在您从这个惰性 var 初始化返回之前,您可以根据需要多次调用该方法。

关于ios - 核心数据 NSPersistentStoreCoordinator 中止来电,SWIFT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39048237/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap