Imagine you have a list of items which is an array of objects (fields: title, description, date) ordered by date. You pick an item from the list and store it on the local device. You then load a list of stored items in an array (UITableView) ordered by date.
I think Using Core Data is overkill. What would you use and how?
THx!
Well I would make the Class implement
NSCodingand save the object to file usingNSKeyedArchiver;You can just loop thru the directory and load all the object with
NSKeyedUnarchiver.