ios开发中 json数据解析 模型属性 description 冲突问题。
高洛峰
高洛峰 2017-04-18 09:40:53
0
2
788

1.利用模型接受josn数据,josn中的key为description时,由于description是ios中的关键字,所以无法命名为模型的属性。

2.这样我该怎么去读取josn中的description对应的value值?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(2)
伊谢尔伦

Rewrite the following method in the model (use desc instead of description below)

- (void)setValue:(id)value forKey:(NSString *)key{
    
    //手动处理description
    if ([key isEqualToString: @"description"]) {
        
        _desc = value;
    }else{
    
    //调用父类方法,保证其他属性正常加载    
        [super setValue:value forKey:key];
    }  
}
PHPzhong

You can use this method in the MJExtension framework to convert

+ (NSDictionary *)replacedKeyFromPropertyName{
    return @{
             @"ID" : @"id",
             @"Description" : @"description"
             };
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template