我有一个像这样的 JSON 对象:
{
"name": "Brendan",
"images": ["some.url.to.image1",
"some.url.to.image2",
"some.url.to.image3"]
}
我的班级如下:
@interface MyModel : MTLModel <MTLJSONSerializing>
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSArray *images;
@end
@implementation MYModel
+ (NSDictionary*)JSONKeyPathsByPropertyKey {
return @{
@"name" : @"name",
@"images" : @"images"
};
}
@end
我可以验证 MYModel 对象是否已name
正确设置,但images
设置为null
. 如何使用 Mantle 填充字符串数组?