ios - The best storage choice for iPhone navigation based application? -


i'm confused best data storage (plists, sqlite, core data etc.) iphone app navigation based , has kinds of lists , info. i'm new , multiple types me confused.

for example, first view table view type of recipe (ex. cookie recipes), second view table view kinds of cookie recipes (ex. chocolate cookies), third view recipe chocolate cookie (numbers, text etc. stored).

it non-static app, make user create table cell "cookie recipes" , create "chocolate cookies" , input info chocolate cookies.

property lists handy when have static data. there's structured editor built right xcode , show in code instances of nsarray , nsdictionary. aren't designed managing changing data, serialisation format.

if user editing complex data, you're better off using core data or sqlite. core data higher level interface designed used cocoa. sqlite job well, i'd suggest using if familiar it.


Comments