我需要一个 JSON 中不存在的属性,但是当我尝试使用此模型对象时需要设置它。我认为向您展示示例会更容易...
这是我的示例 JSON:
[{
"name" : "Safari",
"key" : "safari",
"app_url_scheme" : "http://www.twitter.com",
"actions" :
[{
"key" : "show_profile",
"url_format" : "http://www.twitter.com/{{profile_screenname}}"
}]
}
]
JSONKeyPathsByPropertyKey
方法如下所示:
+ (NSDictionary *)JSONKeyPathsByPropertyKey
{
return @{
@"appName" : @"name",
@"appKey" : @"key",
@"appURLScheme" : @"app_url_scheme",
@"appActions" : @"actions",
@"isInstalled" : NSNull.null
};
}
因此,正如您所看到的,isInstalled
在映射过程中应该忽略此方法(因为 JSON 中没有这样的字段),但我需要在此对象完全映射后立即设置此属性。更重要的是我需要根据 JSON 中提供的其他属性来设置它。如何做到这一点?
我找到了这样的解决方案:
@"videoType" : @"@Selector(videoTypeFromString:, type)",
//! implemented on instance you are parsing
- (NSUInteger)videoTypeFromString:(NSString *)type
{
if ([type isEqualToString:@"shortVideo"]) {
return VideoTypeShort;
}
return VideoTypeLong;
}
但这@selector
永远不会被称为...