Hi, I've got a medium sized project (about 20 critical classes) where I'm using sqlite for my data store. All of my objects and data structures comply with the NSCoding protocol. I've been reading up on all the great bells and whistles Core Data has to offer and would like to migrate my app to use Core Data.
The bells and whistles i'm interested in are:
- Built in undo/redo
- Automatic property validation
What should I make sure I do (I guess as a checklist) to migrate my app to Core Data?
I find myself adding these features in myself, and can see the value in just biting the bullet to get this stuff for "free." i've already invested a good amount of time with sqlite. So as a side question, is it even worth the time and effort?
Thanks!
EDIT: additional comment and clarification
I'm also asking if anybody's here has already done this and what problems and challenges, in your experiences, did you come across? My hunch is that it's not exactly that straight forward.