I want to make an iOS app where the users can store lists of basic objects. These objects will only have something like 3-4 properties each.
The user could create as many of these lists (NSArray) as possible.
I have two questions:
How would I go about saving these NSArrays to disk? Some people say to use NSUserDefaults and others say to use NSKeyedArchiver.
What is the best way to keep track of these arrays? Would it be wise to use an array to store these arrays?
Thanks in advance!