Quote:
Originally Posted by smasher
NSArray's initWithContentsOfFile might be faster, if you can reformat your data into an array of dictionaries and save it as a plist.
Otherwise, if you don't use all of data at once then a SQLite database is probably a better bet. There's no reason to load the whole set into memory if you don't need the whole set at once.
|
Thanks for the suggestions. But I do need the whole data set at once.
I read somewhere that SQLite would be faster anyway, but it was explained a bit vague.