目前,为了使用此功能,我正在将我的对象“转换”为字典。即属性名称成为键,属性值成为值。
有没有办法正确地做到这一点,以便对象可以使用这个函数?
即类似于encodeWithCoder
并initWithCoder
用于NSUserDefaults
.
我想做...
NSData *data = [NSJSONSerialization dataWithJSONObject:myObject options:0 error:nil];
目前我正在做类似的事情......
NSData *data = [NSJSONSerialization dataWithJSONObject:[myObject dictionaryRepresentation] options:0 error:nil];