This will save an array (I think).

- (void)encodeWithCoder:(NSCoder *)encoder {
    [encoder encodeObject:myArray forKey:@"myArray"];
}

Do I have to directly call this method when I want to save an array or do I have to do something else?

link|improve this question

58% accept rate
Don't forget to call super: - (void)encodeWithCoder:(NSCoder *)encoder { [super encodeWithCoder:coder]; [encoder encodeObject:myArray forKey:@"myArray"]; } – Magnus Feb 29 at 23:33
feedback

1 Answer

up vote 4 down vote accepted

You don’t call this method directly. It’s called by a NSCoder subclass if it needs to serialize that object. If you want to encode an object graph use the class methods archivedDataWithRootObject: or archiveRootObject:toFile: of NSKeyedArchiver. This in turn will call the encodeWithCoder: method of your objects. Also note that every object in your array has to implement the NSCoding protocol.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.