The application is a simple to-do list so I've got a mutable array of custom objects. Here's an interface of the custom class:
@interface Task : NSObject
{
NSString *name;
BOOL completeness;
int priority;
}
And I've got a dilemma. What to choose NSCoding or converting the Task into NSDictionary? I mean which way is more efficient?
It's gonna be my first application. And at first i didn't have an idea that i have to save the data. Should i remake the model?
Thanks for any suggestions.