Objective-C KVC和KVO的使用
KVC的使用
通常情况下,我们都是通过属性或者定义存取方法来对实例变量进行存取,但是除此之外,我们也可以通过Key-Value-Coding(KVC)键值编码来存取的实例变量的值。
使用KVC过程:
首先,我们定义一个Person类,代码如下:
/* *Person.h */ #import <Foundation/Foundation.h> @interface Person : NSObject
{ NSString *_name; } @end /* *Person.m */ #import "Person.h" @implementation Person @end
然后创建Person类的实例,并使用KVC对_name实例变量进行赋值和取值操作:
#import <Foundation/Foundation.h> #import "Person.h" int main(int argc, const char * argv[]) { @autoreleasepool { Person *person = [[Person alloc] init]; //将person的实例变量_name赋值为SmithJackyson [person setValue:@"SmithJackyson" forKey:@"_name"]; //取出person的实例变量_name的值 NSString *name = [person valueForKey:@"_name"]; NSLog(@"name = %@",name); } return 0; }
下面为打印结果:
2016-01-14 20:42:14.098 test[1559:113739] name = SmithJackyson
Program ended with exit code: 0
如果A类的属性是一个B类,那么为B类的属性存取值就需要键路径访问属性
假设Student类有一个Course类的属性_course,其中Course类有一个属性表示课程名称NSString *_courseName;
下面通过键路径访问属性:
#import <Foundation/Foundation.h> #import "Student.h" #import "Course.h" int main(int argc, const char * argv[]) { @autoreleasepool { //注意:使用KVC是为实例存取实例变量,所以要初始化,并且为student的_course实例变量赋值为course,否则无法正确赋值 Student *student = [[Student alloc] init]; Course *course = [[Course alloc] init]; [student setValue:course forKey:@"_course"]; //为student实例变量_course的属性_courseName赋值 [student setValue:@"English" forKeyPath:@"_course._courseName"]; //取得student实例变量_course的属性_courseName的值 NSString *courseName = [student valueForKeyPath:@"_course._courseName"]; NSLog(@"courseName = %@",courseName); } return 0; }
下面是打印结果:
2016-01-14 21:15:59.094 test[1867:123245] courseName = English
Program ended with exit code: 0
如果属性是基本数据类型,可以使用字符串值直接赋值给属性,取值时用字符串变量接受
KVO的使用
KVO,即:key-value observing,提供一种机制,假设A对象观察B对象的指定属性C,当B对象的属性C的值发生变化,KVO会通知相应的观察者A,A对象可以进行某些操作,比如更新视图
使用过程:
- 注册,指定观察哪些对象的哪些属性
- 实现回调方法
- 移除观察
首先定义一个Person类,代码如下:
#import <Foundation/Foundation.h> @interface Person : NSObject @property (nonatomic,copy)NSString *name; - (instancetype)initWithName:(NSString *)name; @end #import "Person.h" @implementation Person - (instancetype)initWithName:(NSString *)name { self = [super init]; if (self) { _name = name; } return self; } @end
然后在ViewController中使用KVO,代码如下:
#import "ViewController.h" #import "Person.h" @interface ViewController () { Person *person; } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; person = [[Person alloc] initWithName:@"John"]; //为person对象的属性name添加观察者为ViewController [person addObserver:self forKeyPath:@"name" options:NSKeyValueObservingOptionNew context:nil]; //可以通过下面两种方式改变name的值,都会触发回调方法 person.name = @"SmithJackyson"; [person setValue:@"SmithJackyson" forKey:@"name"]; } //实现KVO回调方法,只要person的属性name发生变化,就会回调这个方法 - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context { //change字典里存的内容是根据你注册时的选项option决定的,如果为NSKeyValueObservingOptionNew,则字典里存的是改变后的值,key为new,同样NSKeyValueObservingOptionOld,则字典里存的是改变前的值,key为old,如果两者都有,则字典存储着两个值 if ([keyPath isEqualToString:@"name"] && object == person) { NSLog(@"now name = %@",person.name); } } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end
运行结果如下:
2016-01-15 16:17:29.102 test[1752:94898] now name = SmithJackyson
2016-01-15 16:17:29.102 test[1752:94898] now name = SmithJackyson
最后还需要移除观察者
- (void)dealloc { [person removeObserver:self forKeyPath:@"name"]; }
转载请注明:作者SmithJackyson
</div>