Xcode:+CoreDataProperties.swift 问题

Posted

技术标签:

【中文标题】Xcode:+CoreDataProperties.swift 问题【英文标题】:Xcode: +CoreDataProperties.swift issue 【发布时间】:2017-07-13 17:28:07 【问题描述】:

我正在设计一个运行良好的应用程序,但不久前我遇到了一个问题,我不得不为 CoreData 创建一个新模型,因为我对实体进行了更改。我到了第四个版本,我的应用程序还有另一个问题,我清理了它。现在,这就是我得到的:

“已删除”属性设置为 NSDate

但在我尝试再次构建它之后,我收到以下错误:

我想如果我对 Entity Xcode 进行更改,我会选择它并相应地更改任何文件!但好像不是这样的!

我尝试删除 +CoreDataProperties.swift 文件和“购物清单”swift 文件,以不同的类名重新创建“购物清单”swift 文件,并尝试再次构建它,但我得到了同样的错误.这告诉我这是一个 CoreData 问题,而不是 Swift 问题。显然我需要属性为 NSDate 但我不确定从这里去哪里!

我可以构建应用程序的唯一方法是注释掉 +CoreDataProperties.swift 文件中的“已删除”属性,它运行良好。

我的应用程序在测试 iPhone 6 上运行,上次我对实体进行更改时,由于错误,我丢失了我在手机上手动输入的所有数据。让应用程序恢复运行的唯一方法是从手机上删除应用程序并重新安装。我真的不想再走那条路了,因为我的手机上有近 450 条不同的记录。

如果我在上传到应用商店的时候把'deleted'属性注释掉了,会不会上传失败,上传成功会不会不能正常工作?

我宁愿在尝试之前对问题进行排序!

【问题讨论】:

【参考方案1】:

您需要做的就是所谓的轻量级迁移。在应用程序委托中,您需要告诉应用程序查找新版本并创建 presistence 存储

    lazy var persistentContainer: NSPersistentContainer = 
    /*
     The persistent container for the application. This implementation
     creates and returns a container, having loaded 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.




    */// THIS IS THE CODE YOU NEED TO ADD
    let container = NSPersistentContainer(name: "NAMEGOESHERE")
       let description = NSPersistentStoreDescription()

       description.shouldInferMappingModelAutomatically = true
       description.shouldMigrateStoreAutomatically = true

        container.persistentStoreDescriptions = [description]
// End of new code

 container.loadPersistentStores(completionHandler:  (storeDescription, error) in
        if let error = error as NSError? 
            // Replace this implementation with code to handle the error appropriately.
            // fatalError() 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.

            /*
             Typical reasons for an error here include:
             * The parent directory does not exist, cannot be created, or disallows writing.
             * The persistent store is not accessible, due to permissions or data protection when the device is locked.
             * The device is out of space.
             * The store could not be migrated to the current model version.
             Check the error message to determine what the actual problem was.
             */
            fatalError("Unresolved error \(error), \(error.userInfo)")
        
    )
    return container

这种方法对我有用。有许多关于进行轻量级迁移的教程here,并且有一个堆栈溢出答案,这是我在遇到此问题时实际提到的答案here。通过进行迁移,您的应用程序应该能够创建一个新的持久性存储,并且在该新存储中它将删除的属性从 Bool 更改为 NSdate,就像在生成的 managedobject 文件中一样。希望这会有所帮助

【讨论】:

谢谢阿里,我会试一试的。顺便感谢您的快速回复,非常感谢。

以上是关于Xcode:+CoreDataProperties.swift 问题的主要内容,如果未能解决你的问题,请参考以下文章

“filename+CoreDataProperties.swift”和“filename.swift”NSmanagedObject 子类有啥用?

核心数据自动生成的类编译器警告

检测对单个 coredata 实体的更改

无法在 CoreData 子类中创建新属性? iOS8 Swift3

iOS开发学习之Core Data

从coredata返回父母和孩子不起作用