• 通过运行时将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/ 

  • 相关阅读:
    wordpress (net::ERR_TOO_MANY_REDIRECTS):重定向过多。
    Windows2003 IIS6完美实现WordPress伪静态的方法
    显示当前时间
    禁止搜索引擎收录的几种方法(全)
    MSClass 的使用(Class Of Marquee Scroll通用不间断滚动JS封装类)
    go to Top 返回顶部 例子
    电机位置和速度信号检测电路
    matlab polyfit 多项式拟合 (转自 百科)
    matlab contour
    DTC学习
  • 原文地址:https://www.cnblogs.com/NatureZhang/p/5086632.html
Copyright © 2020-2023  润新知