views:

361

answers:

1

Hey,

I am releasing a Core Data based app and wondered what I need to consider if, in an update later down the line, I need to change the model.

How do I move existing user data on the device from the old data model into a new updated model?

Thanks

+2  A: 

Generally, you'll have to consider nothing now but as soon as you change your data model, you'll have to employ Core Data's model migration tools. Read the Core Data Model Versioning and Data Migration Programming Guide.

Ole Begemann
Thanks thats great.
Chris