How do you use NSCoder to encode and decode custom types?

For example, how would you use NSCoder with an instance of "STATE" where:

typedef enum { ON, OFF } STATE;
link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can treat them as integers as they are implicitly assigned integer values:

- (void) encodeWithCoder: (NSCoder *)coder {
  ...
  [coder encodeInt:type forKey:@"state"];
}

- (id) initWithCoder: (NSCoder *)coder {
  ...
  state = [coder decodeIntForKey:@"state"];
}
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.