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