I'm loading in data from an sqlite database, storing the values i load from there in the instance variables of a custom class, and then adding this class to a mutable array, which i'm then assigning to the instance variable of my view controller, for use in a tableview.
I would, though, like to save this array into a .plist file in the documents directory on the app's first run, so that i can retrieve the whole object from there on load, rather than pulling all 214 items from the database.
Is this approach a better option? if so, could someone please help provide me with some code that will allow me to save an array of my custom classes as a .plist file? I've come across a lot of sample code on the web, but none of it works correctly.
I'd like to:
- Check for the existence of the my_data.plist file.
- If it exists, read it in as the array.
- If it doesn't, read the data from the sqlite db into an array.
- save this data to a .plist so that it can be read in faster later.
Thanks guys, appreciate any help you can give me.