博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
KVO和KVC的关系
阅读量:5932 次
发布时间:2019-06-19

本文共 3168 字,大约阅读时间需要 10 分钟。

hot3.png

KVC 与 KVO 是 Objective C 的关键概念,个人认为必须理解的东西,下面是实例讲解。

Key-Value Coding (KVC)

KVC,即是指 ,一个非正式的 Protocol,提供一种机制来间接访问对象的属性。KVO 就是基于 KVC 实现的关键技术之一。

一个对象拥有某些属性。比如说,一个 Person 对象有一个 name 和一个 address 属性。以 KVC 说法,Person 对象分别有一个 value 对应他的 name 和 address 的 key。 key 只是一个字符串,它对应的值可以是任意类型的对象。从最基础的层次上看,KVC 有两个方法:一个是设置 key 的值,另一个是获取 key 的值。如下面的例子:

1
2
3
4
5
6
7
8
9
10
11
12
void
changeName(Person *p, NSString *newName)
{
 
    
// using the KVC accessor (getter) method
    
NSString *originalName = [p valueForKey:@
"name"
];
 
    
// using the KVC  accessor (setter) method.
    
[p setValue:newName forKey:@
"name"
];
 
    
NSLog(@
"Changed %@'s name to: %@"
, originalName, newName);
 
}

现在,如果 Person 有另外一个 key 配偶(spouse),spouse 的 key 值是另一个 Person 对象,用 KVC 可以这样写:

1
2
3
4
5
6
7
8
9
10
11
12
13
void
logMarriage(Person *p)
{
 
    
// just using the accessor again, same as example above
    
NSString *personsName = [p valueForKey:@
"name"
];
 
    
// this line is different, because it is using
    
// a "key path" instead of a normal "key"
    
NSString *spousesName = [p valueForKeyPath:@
"spouse.name"
];
 
    
NSLog(@
"%@ is happily married to %@"
, personsName, spousesName);
 
}

key 与 key pat 要区分开来,key 可以从一个对象中获取值,而 key path 可以将多个 key 用点号 “.” 分割连接起来,比如:

[p valueForKeyPath:@
"spouse.name"
];

相当于这样……

[[p valueForKey:@
"spouse"
] valueForKey:@
"name"
];

好了,以上是 KVC 的基本知识,接着看看 KVO。

Key-Value Observing (KVO)

Key-Value Observing (KVO) 建立在 KVC 之上,它能够观察一个对象的 KVC key path 值的变化。举个例子,用代码观察一个 person 对象的 address 变化,以下是实现的三个方法:

  • watchPersonForChangeOfAddress: 实现观察

  • observeValueForKeyPath:ofObject:change:context: 在被观察的 key path 的值变化时调用。

  • dealloc 停止观察

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
static
NSString *
const
KVO_CONTEXT_ADDRESS_CHANGED = @
"KVO_CONTEXT_ADDRESS_CHANGED"
 
@implementation PersonWatcher
 
-(
void
) watchPersonForChangeOfAddress:(Person *)p
{
 
    
// this begins the observing
    
[p addObserver:self
        
forKeyPath:@
"address"
           
options:0
           
context:KVO_CONTEXT_ADDRESS_CHANGED];
 
    
// keep a record of all the people being observed,
    
// because we need to stop observing them in dealloc
    
[m_observedPeople addObject:p];
}
 
// whenever an observed key path changes, this method will be called
- (
void
)observeValueForKeyPath:(NSString *)keyPath
                      
ofObject:(id)object
                        
change:(NSDictionary *)change
                       
context:(
void
*)context
 
{
    
// use the context to make sure this is a change in the address,
    
// because we may also be observing other things
    
if
(context == KVO_CONTEXT_ADDRESS_CHANGED) {
        
NSString *name = [object valueForKey:@
"name"
];
        
NSString *address = [object valueForKey:@
"address"
];
        
NSLog(@
"%@ has a new address: %@"
, name, address);
    
}
}
 
-(
void
) dealloc;
{
 
    
// must stop observing everything before this object is
    
// deallocated, otherwise it will cause crashes
    
for
(Person *p in m_observedPeople){
        
[p removeObserver:self forKeyPath:@
"address"
];
    
}
 
    
[m_observedPeople release];
    
m_observedPeople = nil;
 
    
[super dealloc];
 
}
 
-(id) init;
{
    
if
(self = [super init]){
        
m_observedPeople = [NSMutableArray
new
];
    
}
 
    
return
self;
}
 

这就是 KVO 的作用,它通过 key path 观察对象的值,当值发生变化的时候会收到通知。

转载于:https://my.oschina.net/jesseLiLi/blog/664061

你可能感兴趣的文章
Sublime Text 3 安装Go语言相关插件gosublime
查看>>
android 设置时间12/24小时制
查看>>
laravel 表单验证
查看>>
Win8---XML样式修改
查看>>
Android MD5算法
查看>>
php检测数组长度的函数sizeof count
查看>>
[LeetCode] Gas Station 贪心
查看>>
Bootstrap时间插件中文设置
查看>>
AFNetWorking出现code=-1016错误解决办法
查看>>
[转]拷贝构造函数详解
查看>>
FTP
查看>>
注册页面的编写
查看>>
【原创】上传文件到github
查看>>
CoffeeScript
查看>>
关于Linux的WiFi总是处于software block : yes
查看>>
.NET中怎么有效的使用Cache
查看>>
如何给input[file]定义cursor
查看>>
Python简介
查看>>
教你50招提升ASP.NET性能(二十三):StringBuilder不适用于所有字符串连接的场景;String.Join可能是...
查看>>
【Linux】IPC-消息队列
查看>>