KVC

使用:

[fanye setValuesForKeysWithDictionary:dic];

 

如果出现关键字,则重写setter方法

@property (nonatomic,copy,setter=setDescription:)NSString *myDescription;

 

记得在.m文件加上

-(void)setValue:(id)value forUndefinedKey:(NSString *)key{
    NSLog(@"UndefinedKey:%@",key);
}

posted on 2015-09-07 14:49  Baymax01  阅读(119)  评论(0编辑  收藏  举报

导航