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

KVC方法快速为数据对象赋值

时间:2014-09-20 10:05:07      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   使用   ar   for   文件   数据   sp   

利用KVC方法快速为数据对象赋值,如下例

在.h文件中声明如下形式方法:


- (id)initWithDic:(NSDictionary *)dic;

在对应.m文件中

- (id)initWithDic:(NSDictionary *)dic

{   

     self = [super init];   

     if (self)

{       

          [self setValuesForKeysWithDictionary:dic];   

}   

      return self;

}


同时实现下面方法 ,实现内容一般不写(必须实现,否则无法使用KVC)
- (void)setValue:(id)value forUndefinedKey:(NSString *)key

{   

}

KVC方法快速为数据对象赋值

标签:style   color   io   使用   ar   for   文件   数据   sp   

原文地址:http://blog.csdn.net/hakusan/article/details/39429343

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