how do I add the user capability to tap

I am making an app that is basically a checklist app that permits users to add, import and export lists. These lists however are not documents but pages in the app that can have tracking data pulled from each list. As a rookie programer I don't know where to begin looking for this type of code to create the functionality that I want.


Humbly,

Jonathan

Replies

depending how large and complex data you anticipate the user to create,you have several options to make data persistent.


1. save in user defaults, but only if very simple


2 save by archiving the objects


3. Use Core Data if you have a complex data structure and need data base type manipulation.

>permits users to add, import and export lists.

>These lists however are ... in the app that ... have tracking data ... from each list

So the editable lists are pulled from the tracking data lists - Where is the tracking data pulled from?