首页 > 代码库 > KVC通过Key获取对应的Value的顺序
KVC通过Key获取对应的Value的顺序
KVC,即NSKeyValueCoding,通过字符化名字作为Key来访问对象属性的机制。本质上,KVC在某种程度上提供了访问器的替代方案,只要是有可能KVC尽量使用访问器方法。
以返回对象属性key例,KVC按如下顺序查找返回值:
1、-(<type>) getKey访问器方法
2、-(<type>) key
3、调用valueForUndefinedKey:方法。这些方法的默认实现都是抛出异常。
4、抛出一个NSUndefinedKeyException异常错误。
使用KVC在某些情况下可简化代码,如下:
// Implementation of data-source method without key-value coding- (id)tableView:(NSTableView *)tableview objectValueForTableColumn:(id)column row:(NSInteger)row { ChildObject *child = [childrenArray objectAtIndex:row]; if ([[column identifier] isEqualToString:@"name"]) { return [child name]; } if ([[column identifier] isEqualToString:@"age"]) { return [child age]; } if ([[column identifier] isEqualToString:@"favoriteColor"]) { return [child favoriteColor]; } // And so on.}//Implementation of data-source method with key-value coding- (id)tableView:(NSTableView *)tableview objectValueForTableColumn:(id)column row:(NSInteger)row { ChildObject *child = [childrenArray objectAtIndex:row]; return [child valueForKey:[column identifier]];}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。