tags:

views:

62

answers:

2

For a relatively simple app that manipulates objects that store a date/time and some other values? Should I use property lists? archiving? or sqlite?

+1  A: 

Plists are the simplest way to do save data. Use the built in saving methods in the collection classes (NSarray, NSDict, etc.)

Kailoa Kadano
A: 

You might want to take a look at NSUserDefaults.

Matt Stevens