I'm in the process of making an app that will use a lot of data, e.g ~100 entries, each containing several images, >250 words of text and numerous 1 word/ character values.
Im just wondering about the best practise to do this in objective c?
For example, would I have a plain text file that contains all the values and then read it in at run time?
Or would I need to create an object which holds all these values?
I would prefer this to not use a web source as I want the app to be able to run offline.