码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 模型之中添加非空的方法

时间:2016-05-30 19:54:19      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:

- (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];

}

iOS 模型之中添加非空的方法

标签:

原文地址:http://www.cnblogs.com/fantasy3588/p/5543560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!