I have an application in the App Store and it has a Core Data model with some cached data. In new version of this app I need to migrate to new data model. I don't want to perform all this migration process, because cached data is not important at all. I want just to implement the next scenario in the new app version:
- User has current version of app on his iPhone with some cached data in Core Data
- User updates the app from the App Store
- On first launch application removes all existing data with existing model and create new one
- Application downloads new data from server and cache it in new model
How to implement such scenario?
So, I hope my question is clear enough. Thank you for you answers.