标签:
- (id)initWithDict:(NSDictionary *)dict
{
self = [super init];
if (self) {
[self setValuesForKeysWithDictionary:dict];
self.max = [NSString stringWithFormat:@"%@", dict[@"max"]];
self.average = [NSString stringWithFormat:@"%@", dict[@"average"]];
self.stars = [NSString stringWithFormat:@"%@", dict[@"stars"]];
self.min = [NSString stringWithFormat:@"%@", dict[@"min"]];
}
return self;
}
- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
}
-(id)valueForKeyPath:(NSString *)keyPath
{
return nil;
}
+ (id)ratingModelWithDict:(NSDictionary *)dict
{
return [[self alloc] initWithDict:dict];
}
标签:
原文地址:http://www.cnblogs.com/fantasy3588/p/5543560.html