[iOS][OC] 介绍YYModel两个重要API应对复杂模型

2018-11-08  本文已影响22人  BudSwift

背景

数据转模型,是当前 iOS 开发的流行实践。对比数据交付到业务层的方式,Foundation框架下的字典、数组等 JSONObject以字符串硬编码(也可以通过自定义常量字符串避免硬编码调用),不如模型对象交付来得直观和值传递的便利。其中,YYModel 是常用的现下一种数据转模型方案。

在实际的开发中,因为服务端业务变动,两个接口返回的数据内容基本一致,但有个别字段的命名不一致,比如一个接口返回是 from_beg_time,一个返回是 from_time_beg,为了这个特例去专门新增一个新的类显然很不值得,初期的方案是为这个类声明两个不同属性,只取有值的内容,如下:

NSNumber *timestamp = model.from_beg_time ?: model.from_time_beg;

后来,为了避免疏漏,为此再声明一个专门的getter属性用于取值,并弃用旧的属性避免调用:

@property (nonatomic, strong) NSNumber *from_time_beg_get;
@property (nonatomic, strong) NSNumber *from_time_beg __deprecated_msg("");
@property (nonatomic, strong) NSNumber *from_beg_time __deprecated_msg("");

@implementation SomeModel
- (NSNumber *)from_time_beg_get {
    return self.from_time_beg ?: self.from_beg_time;
}
@end

再后来进一步研究 YYModel 的 API 后有更新的发现,可提高这些业务场景下的应对能力。

介绍两个重要API及其使用

以下 API 及其注释均来自 YYModel 源码

API-1 自定义容器属性内的对象类型


/**
 The generic class mapper for container properties.
 
 @discussion If the property is a container object, such as NSArray/NSSet/NSDictionary,
 implements this method and returns a property->class mapper, tells which kind of 
 object will be add to the array/set/dictionary.
 
  Example:
        @class YYShadow, YYBorder, YYAttachment;
 
        @interface YYAttributes
        @property NSString *name;
        @property NSArray *shadows;
        @property NSSet *borders;
        @property NSDictionary *attachments;
        @end
 
        @implementation YYAttributes
        + (NSDictionary *)modelContainerPropertyGenericClass {
            return @{@"shadows" : [YYShadow class],
                     @"borders" : YYBorder.class,
                     @"attachments" : @"YYAttachment" };
        }
        @end
 
 @return A class mapper.
 */
+ (nullable NSDictionary<NSString *, id> *)modelContainerPropertyGenericClass;

如果模型的一个属性是容器类型,比如数组、集合或者字典,则这个模型类可通过实现此类方法来确定容器内对象的类,通过映射关系告知 YYModel 实现容器内的数据转化为模型,值得注意的三点:

@property (nonatomic, copy) NSArray <SomeClass *> *objects;
@propety (nonatomic, strong) OtherClass *info;

API-2 自定义属性名称对应到数据中的 key,乃至keyPath以及多个key。

/**
 Custom property mapper.
 
 @discussion If the key in JSON/Dictionary does not match to the model's property name,
 implements this method and returns the additional mapper.
 
 Example:
    
    json: 
        {
            "n":"Harry Pottery",
            "p": 256,
            "ext" : {
                "desc" : "A book written by J.K.Rowling."
            },
            "ID" : 100010
        }
 
    model:
        @interface YYBook : NSObject
        @property NSString *name;
        @property NSInteger page;
        @property NSString *desc;
        @property NSString *bookID;
        @end
        
        @implementation YYBook
        + (NSDictionary *)modelCustomPropertyMapper {
            return @{@"name"  : @"n",
                     @"page"  : @"p",
                     @"desc"  : @"ext.desc",
                     @"bookID": @[@"id", @"ID", @"book_id"]};
        }
        @end
 
 @return A custom mapper for properties.
 */
+ (nullable NSDictionary<NSString *, id> *)modelCustomPropertyMapper;

一般而言,模型的属性与 JSON 中的 key 是一一对应的,但总有例外的情况,比如常见的idNO这些 Objective-C保留字是不方便使用的,或者 JSON 中的 key 值不具备良好的可读性等,通过在类中实现此类方法可以达到自定义模型和JSON数据的映射关系,值得提出的是其自定义的映射关系,支持多种情况:

由此,可进一步优化前文所述问题的解决方案,通过一个属性映射多个 key 值即可,实现如下:

@property (nonatomic, strong) NSNumber *from_time_beg;
+ (nullable NSDictionary<NSString *, id> *)modelCustomPropertyMapper {
    return @{@"from_time_beg": @[@"from_time_beg", @"from_beg_time"]};
}

延伸

上一篇下一篇

猜你喜欢

热点阅读