Hi all, In my app I want to load some initial data to show the user how it works. The app uses a CoreData managed sqllite db.
SO far I've thought of 3 options:
Write code into a class to programmatically create the data.
Create a xml file in the apps resources and load through a NSXmlParser whose delegate creates the entries in the sqllite db.
Same as option #2, but use a json file and bring in a 3rd party lib to read it.
Are there other options I have not found yet? and given that I'm talking about perhaps 6 records per table when there are 3 tables, which would you choose?