zoukankan      html  css  js  c++  java
  • 通过运行时将Model转成字典输出

    或许我们会有一些这样的场景,定义一个Model类来临时存储一些数据,然后稍后再把这些数据组织成 Dictionary,再做其他用途。

    可以通过运行时机制 获取类的PropertyList,然后根据 其中的某个Property找到对应的iVar,通过ivar 获取到对应的值。通过属性名作为字典键值,iVar值作为value付给Dic,至此结束。

    - (NSDictionary *)dicSerializeObject
    {
        NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithCapacity:5];
        
        NSString *className = NSStringFromClass([self class]);
        id class = objc_getClass([className UTF8String]);
        
        // 获取类中的property
        unsigned int propertyCount;
        objc_property_t *properties = class_copyPropertyList(class, &propertyCount);
        
        for (unsigned int i = 0; i < propertyCount; i++)
        {
            objc_property_t property = properties[i];
            const char *cPropertyName = property_getName(property);
            
            // 得到属性名
            NSString *propertyName = [NSString stringWithCString:cPropertyName encoding:NSUTF8StringEncoding];
            
            // 获取实例变量
            Ivar ivar = class_getInstanceVariable([self class], cPropertyName);
            if (ivar == nil)
            {
                ivar = class_getInstanceVariable([self class], [[NSString stringWithFormat:@"_%@", propertyName] UTF8String]);
            }
            
            // 赋值
            if(ivar != nil)
            {
                id propertyValue = object_getIvar(self, ivar);
                
                if (propertyValue)
                {
                    [dictionary setObject:propertyValue forKey:propertyName];
                }
            }
        }
        
        free(properties);
        
        return dictionary;
    }
    

     将这个方法定义实现在NSObject的Category中,即可方便使用。

    还看到这一篇博客(JSON转Model思路):http://ios.jobbole.com/82975/ 

  • 相关阅读:
    ANSYS Workbench 16.0超级学习手册(附光盘)
    自控力(套装共2册)
    超实用记忆力训练法
    大愿法师“幸福人生”系列丛书——禅心商道
    高情商沟通术(写给所有深受社交困扰的人)
    青年职业形象管理手册(高等职业教育在线开放课程新形态一体化规划教材)
    1019. 括号匹配
    1026. 高精度除法
    1018. A+B Problem Revisited
    1015. 高精度乘法
  • 原文地址:https://www.cnblogs.com/NatureZhang/p/5086632.html
Copyright © 2011-2022 走看看