Fix Core Data Fail

前端 未结 3 349
南旧
南旧 2021-01-17 05:14

I have an app in the app store that uses Core Data and I have to release an update by tomorrow. However, I am experiencing some problems with Core Data.I by mistake made cha

相关标签:
3条回答
  • 2021-01-17 05:25

    You should revert your model to the one that you have in App Store. Then you should Add new model version of your Core Data model. If you can't revert to that model you should try to make it exactly as it was.

    After you've done a new model version, you should select that one and make the changes.

    0 讨论(0)
  • 2021-01-17 05:40

    You can recover the original Core Data model from the production app's bundle.

    Use Finder to open the app bundle (Show Package Contents) and look for a .mom file or a .momd directory.

    Copy the file or directory to some location outside the bundle.

    Create a new XCode project with Core Data.

    In XCode select the newly created projects Core Data model.

    Go to the XCode Editor -> Import menu and select the .mom file you have just copied, if need be find the correct version in the .momd directory.

    You should now have the model in XCode, save and copy the model file to you original project...

    In XCode delete the incorrect model from your project (remember to save a copy first so you have a copy of the new changes)

    Use the XCode Add File to... menu to add the old model to the original project

    Now compile and run the app to confirm it opens the old file correctly

    Now add a new model version and add the changes to this new version - make sure you select the new model version in XCode before making changes

    enter image description here

    0 讨论(0)
  • 2021-01-17 05:42

    If you don't use Git (which is really, really bad, by the way), you can just install your app from the App Store and use some iPhone File Manager to get the old mom file from your app. It would be in /apps/yorapp/youapp.app/ folder with .mom extension Try iExplorer, for example, it's free.

    0 讨论(0)
提交回复
热议问题