zoukankan      html  css  js  c++  java
  • 自动归档解档工具

    1.首先获取一个类的所有属性

    + (NSArray *)getAllPropertyWithClass:(Class)class
    {
        NSMutableArray *propertyArr = [[NSMutableArray alloc] init];
        unsigned int count;
        while (class != [NSObject class]) {
            objc_property_t *properties = class_copyPropertyList(class, &count);
            for(int i = 0; i < count; i++)
            {
                objc_property_t property = properties[i];
                NSString *propertyName = [[NSString alloc] initWithCString:property_getName(property) encoding:NSUTF8StringEncoding];
                if ([propertyName isEqualToString:@"distace"]) {
                    continue;
                }
                [propertyArr addObject:propertyName];
            }
            if (properties) {
                free(properties);
            }
            //得到父类的消息
            class = class_getSuperclass(class);
        }
        return propertyArr;
    }

    2.用kvc对每个属性进行归档解档

    - (instancetype)initWithCoder:(NSCoder *)coder

    {

        self = [super init];

        if (self) {

            NSArray *properties = [GetAllPropertyTool getAllPropertyWithClass:[self class]];

            for (NSString *property in properties) {

                @try {

                    [self setValue:[coder decodeObjectForKey:property] forKey:property];

                }

                @catch (NSException *exception) {

                    

                }

                @finally {

                    

                }

                

            }

        }

        return self;

    }

     

    - (void)encodeWithCoder:(NSCoder *)coder

    {

        NSArray *properties = [GetAllPropertyTool getAllPropertyWithClass:[self class]];

        for (NSString *property in properties) {

            @try {

                [coder encodeObject:[self valueForKey:property] forKey:property];

            }

            @catch (NSException *exception) {

                

            }

            @finally {

                

            }

            

        }

    }

  • 相关阅读:
    详细讲解mysql 主从复制原理
    Golang语言快速上手到综合实战笔记(Go语言、Beego框架、高并发聊天室、爬虫)
    每个人都应该知道的25个Git命令
    docker 记录
    MySQL主从复制数据同步,常见问题总结
    详解mysql 主从复制原理
    算法系列15天速成——第十天 栈
    算法系列15天速成——第二天 七大经典排序【中】
    算法系列15天速成——第一天 七大经典排序【上】
    算法系列15天速成——第四天 五大经典查找【上】
  • 原文地址:https://www.cnblogs.com/bing-ge/p/4544044.html
Copyright © 2011-2022 走看看