In my iPhone app, I have large amount of data i.e. around 1000 pages of text.
Where should I do to store them?
Should I use plist or Sqlite Database table?
Which of them would prove to be more efficient?
Please Help and Suggest.
Thanks in Advance.
For big amount of data, sqlite or coreData are better because all data are not load in memory to access to one.
With pList, entire file is read in memory. After, you can retain only data what you want, but it is not optimized.