美文网首页
归档自定义对象

归档自定义对象

作者: 张小泺 | 来源:发表于2016-06-03 07:29 被阅读21次

对于归档的对象,其类要服从NSCoding协议

- (void)encodeWithCoder:(NSCoder *)aCoder {

   unsigned propertyCount = 0;

   objc_property_t *ps = class_copyPropertyList([RepairDetailInfo class], &propertyCount);

   for (int i = 0; i < propertyCount; i ++) {

       objc_property_t p = ps[i];

       const char *propertyName = property_getName(p);

       NSString *key = [NSString stringWithUTF8String:propertyName];

       id value = [self valueForKey:key];

       [aCoder encodeObject:value forKey:key];

   }

   free(ps);

}

- (instancetype)initWithCoder:(NSCoder *)aDecoder {

   if (self = [super init]) {

       unsigned propertyCount = 0;

       objc_property_t *ps = class_copyPropertyList([RepairDetailInfo class], &propertyCount);

       for (int i = 0; i < propertyCount; i ++) {

           objc_property_t property = ps[i];

           const char *propertyName = property_getName(property);

           NSString *key = [NSString stringWithUTF8String:propertyName];

           id value = [aDecoder decodeObjectForKey:key];

           [self setValue:value forKey:key];

       }

       free(ps);

   }

   return self;

}

相关文章

网友评论

      本文标题:归档自定义对象

      本文链接:https://www.haomeiwen.com/subject/zpikdttx.html