Core Data vs. SQLitePersistentObjects
Posted
by Macatomy
on Stack Overflow
See other posts from Stack Overflow
or by Macatomy
Published on 2010-02-19T01:41:09Z
Indexed on
2010/04/13
1:42 UTC
Read the original article
Hit count: 503
I'm creating an iPhone app and I'm trying to choose between 2 solutions for a persistent store.
Core Data, or SQLitePersistentObjects. Basically, all my app needs is a way to store an array of model objects and then load them again to display in a UITableView. Its nothing too complicated. Core Data seems to have a much higher learning curve than the simple to use SQLitePersistentObjects. Are there any obvious benefits of using Core Data over SQLitePersistentObjects in my case?
© Stack Overflow or respective owner