I have several arrays of arrays or arrays of dicts that I would like to store in my iPhone app. This lists are static and won't be modified by the app or users. Occasionally they may be displayed but more likely they'll be iterated over and compared to some input value. Would the best way to store these arrays be a CoreData/SQLite data store, in a header file, or something I'm not thinking of? I could see making a class that only has these arrays stored in them for access, but I'm not sure if that's the best route to take.
|
|
I would do the following:
Additional arrays or arrays of dicts would be added as class methods on that class. |
||
|
|
|
|
Use a property list file. Load it with NSDictionary +dictionaryWithContentsofFile:. |
||||
|
|
|
I would go for the plist approach. |
||
|
|
|
|
Depending on how often you want to modify or localize the items, and your lookup time requirements, a static array may also be the way to go. For constant data, however, SQLite is probably not the route to take, unless you have complex query requirements (as opposed to just by-index). |
||
|
|
