I have an iphone app with core data. I pre-populate an entity called DefaultValues before user download the app from app store, he then add his own data to other entities. DefaultValues never gets changed. Now, i want to modify some data from my DefaultValues entity and add some new data to it (no change in entity schema). How do i do it??
Off course, i did some research online before asking this question. I found some links here Link 1:
but there is no concrete answer to this question.
Should i have to perform core data versioning and data migration?? Or how should i just change DefaultValues entity without erasing users data???
Thanks