1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| @implementation Staff
+(JSONKeyMapper*)keyMapper { return [[JSONKeyMapper alloc] initWithModelToJSONDictionary:@{ @"dataID": @"ID", @"dataName": @"name", @"level": @"staffLevel", @"score": @"staffScore", @"memberLevel": @"level", @"memberScore": @"score" }]; }
@end
@implementation Customer
+(JSONKeyMapper*)keyMapper { return [[JSONKeyMapper alloc] initWithModelToJSONDictionary:@{ @"dataID": @"ID", @"dataName": @"nick", @"level": @"level", @"score": @"score" }]; }
@end
@implementation BaseUser
@end
NSDictionary *dictionary = @{@"ID": @59, @"name": [NSNull null], @"nick": @"Tony", @"age": [NSNull null], @"level": @8, @"score": @666, @"staffLevel": @15, @"staffScore": @86, @"offline": @true};
NSError *error; Staff *model1 = [[Staff alloc] initWithDictionary:dictionary error:&error]; if (model1) { LOG_FORMAT(@"%@", STRING_FORMAT(@"Staff model: %@", model1)); } Customer *model2 = [[Customer alloc] initWithDictionary:dictionary error:&error]; if (model2) { LOG_FORMAT(@"%@", STRING_FORMAT(@"Customer model: %@", model2)); }
|