I have a mainObjectArray (NSMutableArray) which is populated with instances of a custom class. Each instance is itself an array, and objects in each array are NSDates, NSStrings, BOOL, and more arrays containing similar objects.

What I haven't been able to establish is whether it's possible to, inside the

-(void) encodeWithCoder:(NSCoder *)encoder method, to just say something like:

[encoder encodeWithObject:mainObjectArray];

Or do have to encode every object in every instance separately? This would be a bit of a pain...

Your help would be very much appreciated.

link|improve this question
What do you mean by "each instance is itself an array"? Do you simply mean that your custom class instances have an array property? Or is it a subclass of NSArray? – yuji Feb 18 at 17:59
Sorry for being inaccurate. My custom class is a subclass of NSObject, and has NSMutableArray, int, NSString, BOOL & NSDate as properties. – Stiggie Feb 19 at 6:33
feedback

1 Answer

up vote 0 down vote accepted

Just implement the encoding and decoding methods in your custom class. That will do. Some sample,

- (void)encodeWithCoder:(NSCoder *)encoder
{
    [encoder encodeObject:[NSNumber numberWithInt:pageNumber] forKey:@"pageNumber"];
    [encoder encodeObject:path forKey:@"path"];
    [encoder encodeObject:array forKey:@"array"];
}

- (id)initWithCoder:(NSCoder *)aDecoder
{
    if(self = [super init]) 
    {
        self.pageNumber = [[aDecoder decodeObjectForKey:@"pageNumber"] intValue];
        self.path = [aDecoder decodeObjectForKey:@"path"];
        self.array = [aDecoder decodeObjectForKey:@"array"];
    }
}

You can see totally three data types being encoded and decoded - int, string, array.

Hope this helps.

link|improve this answer
Hi cocoakomali! Thank you for your response. What I don't understand is, if it's possible to encode an array as you have done in the above example, why can I not just do the encoding with one line of code on my mainObjectArray? – Stiggie Feb 19 at 6:32
Since your mainObjectArray is made from a custom class, you should implement the methods as I did. – cocoakomali Feb 20 at 16:13
feedback

Your Answer

 
or
required, but never shown

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