Fix Core Data Fail

南楼画角 提交于 2019-12-01 13:49:41

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

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!