码迷,mamicode.com
首页 > 其他好文 > 详细

BaceModel

时间:2016-04-03 13:12:49      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

https://github.com/nicklockwood/BaseModel

字典封装成model 自动封装

要求属性的名字与字典一样

不能有对象

如果其中有需要自己封装的对象属性

重写setWithDictionary

 

-(void)setWithDictionary:(NSDictionary *)dict{

    [super setWithDictionary:dict];

    //user

    self.WBuser = [WeiboUser userWithDictionary:[dict objectForKey:@"user"]];

    //retweetWeibo

    if ([dict objectForKey:@"retweeted_status"] != nil) {

        WeiboModel *retModel = [[WeiboModel alloc] init];

        [retModel setWithDictionary:[dict objectForKey:@"retweeted_status"]];

        self.retweetedWeiboModel = retModel;

    }

 

}

BaceModel

标签:

原文地址:http://www.cnblogs.com/huoran1120/p/5349601.html

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