在iOS开发中,我们一般使用set方法或者点语法来修改对象的属性值,比如说 stu.age = 9 与 [stu setAge:9]。

  KVC(key value coding)键值编码,这是一种间接修改对象属性值的方法。实现方法就是通过用字符串来描述要修改的属性。基本的操作方法有 setValue:forKey: 和 valueForKey,以字符串的形式发送对象

  特别提醒,使用KVC中所有的value都必须是对象。

在此以Student类和 Book类作为例子来总结

  Student类:

 //.h文件
#import <Foundation/Foundation.h>
@class Book;
@interface Student : NSObject @property (nonatomic, assign) int age; @property (nonatomic, copy) NSString* name; @property (nonatomic, strong) Book* book; @property (nonatomic, strong) NSArray* books;
@end //.m文件 #import "Student.h"
#import "Book.h"
@implementation Student - (NSString *) description
{
return [NSString stringWithFormat:@"%@ %d", _name, _age];
}
@end

  Book类:

  

 //.h文件
#import <Foundation/Foundation.h> @interface Book : NSObject @property (nonatomic, assign) int price;
@end //.m文件
#import "Book.h" @implementation Book @end

  主函数:

  

 #import <Foundation/Foundation.h>
#import "Student.h"
#import "Book.h" //1.设值 取值
void fun1()
{
NSLog(@"==============fun1==============");
Student *stu = [[Student alloc] init]; [stu setValue:@"hehe" forKey:@"name"];
[stu setValue:@ forKey:@"age"]; NSLog(@"%@", stu); NSLog(@"name : %@", [stu valueForKey:@"name"]);
} //2.批量获取属性值
void fun2()
{
NSLog(@"==============fun2==============");
Student *stu = [[Student alloc] init]; [stu setValue:@"hehe" forKey:@"name"];
[stu setValue:@ forKey:@"age"]; NSArray *arr = @[@"name", @"age"]; NSDictionary *dict = [stu dictionaryWithValuesForKeys:arr]; NSLog(@"%@", dict);
} //3.批量设置属性值(通过字典批量赋值)
void fun3()
{
NSLog(@"==============fun3==============");
Student *stu = [[Student alloc] init]; NSDictionary *dict = @{@"age": @, @"name" : @"悟空"}; [stu setValuesForKeysWithDictionary:dict]; NSLog(@"%@", stu);
} //4.通过键路径(key path)访问(使用valueForKeyPath)
void fun4()
{
NSLog(@"==============fun4==============");
Student *stu = [[Student alloc] init];
Book *book = [[Book alloc] init];
stu.book = book;
//设置值
[stu setValue:@ forKeyPath:@"book.price"];
//获取值
NSNumber *price = [stu valueForKeyPath:@"book.price"]; NSLog(@"price: %@", price);
} //5.对数组进行整体操作
void fun5()
{
NSLog(@"==============fun5==============");
Student *stu = [[Student alloc] init]; Book *book = [[Book alloc] init];
book.price = ;
Book *book1 = [[Book alloc] init];
book1.price = ;
Book *book2 = [[Book alloc] init];
book2.price = ; NSArray *arr = @[book, book1, book2]; stu.books = arr;
//获取值
// NSArray *prices = [stu valueForKeyPath:@"books.price"];
NSArray *prices = [stu.books valueForKeyPath:@"price"];
NSLog(@"prices: %@", prices);
} //6.键路径的运算符(数组元素求和)
void fun6()
{
NSLog(@"==============fun6==============");
Student *stu = [[Student alloc] init]; Book *book = [[Book alloc] init];
book.price = ;
Book *book1 = [[Book alloc] init];
book1.price = ;
Book *book2 = [[Book alloc] init];
book2.price = ; NSArray *arr = @[book, book1, book2]; stu.books = arr;
//获取值
NSNumber *sum = [stu valueForKeyPath:@"books.@sum.price"];
NSLog(@"prices: %@", sum);
} //7.键路径的运算符(数组总数count)
void fun7()
{
NSLog(@"==============fun7==============");
Student *stu = [[Student alloc] init]; Book *book = [[Book alloc] init];
book.price = ;
Book *book1 = [[Book alloc] init];
book1.price = ;
Book *book2 = [[Book alloc] init];
book2.price = ; NSArray *arr = @[book, book1, book2]; stu.books = arr;
//获取值
NSNumber *sum = [stu valueForKeyPath:@"books.@count.price"];
NSLog(@"num: %@", sum);
} //8.键路径的运算符(获取数组不同元素)
void fun8()
{
NSLog(@"==============fun8==============");
Student *stu = [[Student alloc] init]; Book *book = [[Book alloc] init];
book.price = ;
Book *book1 = [[Book alloc] init];
book1.price = ;
Book *book2 = [[Book alloc] init];
book2.price = ; NSArray *arr = @[book, book1, book2]; stu.books = arr;
//获取值
NSArray *array = [stu valueForKeyPath:@"books.@distinctUnionOfObjects.price"];
NSLog(@"array: %@", array);
} //9.求数组元素中得最大值、最小值、平均值
void fun9()
{
NSLog(@"==============fun9==============");
Student *stu = [[Student alloc] init]; Book *book = [[Book alloc] init];
book.price = ;
Book *book1 = [[Book alloc] init];
book1.price = ;
Book *book2 = [[Book alloc] init];
book2.price = ; NSArray *arr = @[book, book1, book2]; stu.books = arr;
//获取值
NSNumber *max = [stu valueForKeyPath:@"books.@max.price"];
NSNumber *min = [stu valueForKeyPath:@"books.@min.price"];
NSNumber *average = [stu valueForKeyPath:@"books.@avg.price"];
NSLog(@"max: %@", max);
NSLog(@"min: %@", min);
NSLog(@"avg: %@", average);
} int main(int argc, const char * argv[])
{ @autoreleasepool {
fun1();
fun2();
fun3();
fun4();
fun5();
fun6();
fun7();
fun8();
fun9();
}
return ;
}

  

OC KVC总结的更多相关文章

  1. OC KVC

    OC KVC KVC 全称 key valued coding 键值编码 在说KVC之前应该简单的了解一下反射机制 反射机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法. 对于任意 ...

  2. oc kvc的模式:匹配搜索模式(模式匹配)、装包解包

    按照一定规则使用匹配模式在目标空间进行搜索,然后执行相应操作: 运行时系统将kvc的运行机制解释为模式匹配,将值的兼容性问题解释为装包解包问题 一.模式匹配 The default implement ...

  3. iOS 头条一面 面试题

    1.如何高效的切圆角? 切圆角共有以下三种方案: cornerRadius + masksToBounds:适用于单个视图或视图不在列表上且量级较小的情况,会导致离屏渲染. CAShapeLayer+ ...

  4. OC:属性、点语法、KVC

    //属性的属性 属性定义在一个 .h文件里,在这个.h文件里可以定义实例变量(就是这个类的特征),也可以通过   @protery(属性约束关键字) 属性名字类型 属性名 来定义一些属性,在prope ...

  5. KVC 和 OC字典

    KVC(键值编码)和OC 字典很相似,都是键值存储.但是OC 字典比较灵活,它是一种映射. [dict setObject:<#(id)#> forKey:<#(id<NSCo ...

  6. QF——OC中的KVC,KVO

    KVC: (Key Value Coding) 键值编码 所谓KVC,其实就是不通过set和get方法访问对象属性,而是通过属性名字符串动态的去读取属性.KVC其实也是OC反射机制的一种运用. 之所以 ...

  7. 设计模式之观察者模式(关于OC中的KVO\KVC\NSNotification)

    学习了这么久的设计模式方面的知识,最大的感触就是,设计模式不能脱离语言特性.近段时间所看的两本书籍,<大话设计模式>里面的代码是C#写的,有一些设计模式实现起来也是采用了C#的语言特性(C ...

  8. OC学习篇之---KVC和KVO操作

    前一篇文章我们介绍了OC中最常用的文件操作:http://blog.csdn.net/jiangwei0910410003/article/details/41875015,那么今天来看一下OC中的一 ...

  9. [转] iOS (OC) 中 KVC 与 KVO 理解

    转自: http://magicalboy.com/kvc_and_kvo/ KVC 与 KVO 是 Objective C 的关键概念,个人认为必须理解的东西,下面是实例讲解. Key-Value ...

随机推荐

  1. 利用指针突破C++编译器的防线

    C++ 面向对象的一大特性就是封装,使用不同的访问控制符来控制外接对其的访问权限.比如: class A { public: A(): i(){} void print(){ cout << ...

  2. linux下各种代理的设置

    http://los-vmm.sc.intel.com/wiki/OpenStack_New_Hire_Guide#Apply_JIRA_account Set up your proxy. The ...

  3. opennebula kvm attach disk

    openNebula hotPlug disk or nic 网络检索关键字(Network search keywords) 208.117.233.122 virsh attach disk vi ...

  4. 使用window.postMessage实现跨域通信

    JavaScript由于同源策略的限制,跨域通信一直是棘手的问题.当然解决方案也有很多: document.domain+iframe的设置,应用于主域相同而子域不同: 利用iframe和locati ...

  5. Android基础-EditText键盘的显示与隐藏

    场景一.点击EditText之外的空白区域隐藏键盘: how to hide soft keyboard on android after clicking outside EditText? 首先定 ...

  6. 2014.9.15HTML

    <html> <title> </title> ——页面标题 <head> </head> ——网页上的控制信息 <body> ...

  7. hadoop 配置文件注意问题

    一定要配置成hostname形式: 如伪分布:配成localhost:9000 完全分布:配成big1:9000

  8. 用C++写一个简单的发布者

    节点是一个可执行程序,它连接到了ROS的网络系统中.我们将会创建一个发布者,也就是说话者节点,它将会持续的广播一个信息. 改变目录到之前所建立的那个包下: cd ~/catkin_ws/src/beg ...

  9. ExtJS 4.2学习(一)——环境搭建

    1.把JDK集成到myeclipse里: 虽然myeclipse自带了jdk,但我们还是配置自己的JDK1.7 window——>Proferences——>Java——>Compl ...

  10. 【转】CentOS图形界面的开启与关闭

    源自:http://blog.sina.com.cn/s/blog_4a1f76860100zpus.html 安装CentOS 5.6系统的时候我没有先装任何组件,现在用X Window,需要再安装 ...