I developing an app that is read-only. The data has relationships, so I cannot just use a plist or something similar.
Questions:
- Should I use Core Data for such a requirement?
- If so, how would I enter the data and then release the app with that data?
- How would I make it so that the app doesn’t need to re-populate a DB every time it loads?
- Is there a way to create a Core Data model using sql commands with sqlite (i.e. insert into, etc)?
In my short experience with the iPhone, you have two options.
From past experience, option 2 is much quicker for user experience, and the preferred solution.