您可以为CountryModel
实现类工厂方法的自定义模型类(例如 )定义一个类别。一个人为的例子:
@interface CountryModel (JSONExtension)
+ (CountryModel*) jsonExtension_modelWithJSONObject:(NSDictionary*)jsonObject error:(NSError**)error;
@end
@implementation CountryModel (JSONExtension)
+ (CountryModel*) jsonExtension_modelWithJSONObject:(NSDictionary*)jsonObject error:(NSError**)error {
// Create an object of type Foo with the given NSDictionary object
CountryModel* result = [[CountryModel alloc] initWithName:jsonObject[@"name"]];
if (result == nil) {
if (error) {
*error = [NSError errorWithDomain:@"CountryModel"
code:-100
userInfo:@{NSLocalizedDescriptionKey: @"Could not initialize CountryModel with JSON Object"}];
}
return nil;
}
// "recursively" use jsonExtension_modelWithJSONObject:error: in order to initialize internal objects:
BarModel* bar = [BarModel jsonExtension_modelWithJSONObject:jsonObject[@"bar"] error:error];
if (bar == nil) // bar is required
{
result = nil;
return nil;
}
result.bar = bar;
return result;
}
@end
jsonObject是将 JSON 对象表示为NSDictionary
对象。您需要先创建此表示,然后再将其传递给类工厂方法,例如:
NSError* error;
NSDictionary* jsonObject = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];
assert([jsonObject isKindOfClass[NSDictionary class]]);
CountryModel* model = [CountryModel jsonExtension_modelWithJSONObject:jsonObject error:&error];