Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to save the app state by encoding when the app terminates. I've found the solution related this issue. But I don't know how to use.

I am really trying to make encoding and decoding like this: http://cocoaheads.byu.edu/wiki/nscoding

in CustomObject.h

@interface CustomObject : NSObject <NSCoding>
{
   NSArray *someArray;
}

in CustomObject.m

@implementation CustomObject

// Other method implementations here

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

- (id) initWithCoder:(NSCoder*)decoder {
    if (self = [super init]) {
      someArray = [[decoder decodeObjectForKey:@"someArray"] retain];
    }
    return self;
}

@end

My object to save is another NSArray. Not "someArray" in CustomObject. We call it that "MySaveObject". I want to pass "MySaveObject" to "someArray" in CustomObject.

Actually I don't know how to encode "MySaveObject" and to pass to "someArray" in CustomObject.

Thanks in advance.

share|improve this question

2 Answers

up vote 0 down vote accepted

You have to make sure that the objects contained in the array are also able to be encoded. If those objects are custom objects, you'll have to implement NSCoding in them yourself.

share|improve this answer

See if this tutorial helps...

share|improve this answer
Thanks, But I need to encode data when save it. – Ferdinand Apr 28 '10 at 10:40
Thanks. But it is not issue I am searching. My main point is how to pass MySaveObject" to "someArray" in CustomObject by encoding. – Ferdinand Apr 28 '10 at 11:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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