在写这篇文章之前,我对网上关于KVO手动通知的资源也进行了搜索,我能感觉到有些作者不了解这个知识,甚至把读者带入了一个误区,或者只是按照官方文档翻译了一下,也有些作者从他们的描述中,我能感觉到这个知识点他们是懂的,但是可能因为太过简单,他们没有举例进行详细的说明。
1 关闭自动通知 ,automaticallyNotifiesObserversForKey:
KVO分为手动通知和自动通知两种,自动通知,手动通知,默认是自动通知。如果你想要使用手动通知条件首先你需要重写KVO automaticallyNotifiesObserversForKey方法 此方法默认返回YES为自动通知,重写返回NO则为手动通知。
1.Person.h
#import <Foundation/Foundation.h>
@interface Person : NSObject
@property (nonatomic,copy)NSString *age;
@property (nonatomic,copy)NSString *name;
@end
2. Person.m
@implementation Person
+ (BOOL)automaticallyNotifiesObserversForKey:(NSString*)key{
if ([key isEqualToString:@"age"]){
return NO;
}
return [super automaticallyNotifiesObserversForKey:key];
}
@end
注意:此时我们关闭了 对“age”进行监控的自动通知,如果需要在某种情况下进行监控需要我们通过另外的放进行手动触发,不着急,我们先对接下来的方法分析一下。
3.方法1 思考分析
#import "ViewController.h"
#import "Person.h"
@interface ViewController ()
@property (nonatomic,strong)Person *person;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.person = [[Person alloc]init];
[self.person addObserver:self forKeyPath:@"age" options:NSKeyValueObservingOptionNew context:nil];
[self.person addObserver:self forKeyPath:@"name" options:NSKeyValueObservingOptionNew context:nil];
self.person.age = @"15";
self.person.name = @"33-55";
}
- (void)observeValueForKeyPath:(nullable NSString *)keyPath ofObject:(nullable id)object change:(nullable NSDictionary<NSKeyValueChangeKey, id> *)change context:(nullable void *)context{
NSLog(@"change:%@",change);
}
- (void)dealloc{
[self.person removeObserver:self forKeyPath:@"age"];
[self.person removeObserver:self forKeyPath:@"name"];
}
分析:通过以上代码我们可以知道,我们分别对“age”,“name”进行了监控,如果都是自动通知会触发两次observeValueForKeyPath方法,但是我们关闭了关于“age”的自动触发通知,也就是说此刻回打印一次关于“name”改变的新值。
打印数据:
2018-05-22 10:49:47.526193+0700 KVODemo[56115:1842897] change:{
kind = 1;
new = "33-55";
}
和我们想的一样,只触发了一次关于“name”新值的变化。那么如果触发关于“age”的触发呢。我们继续往下看。
3.方法2 手动通知的触发
#import "ViewController.h"
#import "Person.h"
@interface ViewController ()
@property (nonatomic,strong)Person *person;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.person = [[Person alloc]init];
[self.person addObserver:self forKeyPath:@"age" options:NSKeyValueObservingOptionNew context:nil];
[self.person addObserver:self forKeyPath:@"name" options:NSKeyValueObservingOptionNew context:nil];
self.person.age = @"15";
NSLog(@"第一次调用KVO");
self.person.name = @"33-55";
}
//触发age改变发送通知的方法
- (IBAction)ageChageBtnClick:(id)sender {
NSLog(@"第二次次调用KVO:我被点击了,我去触发通知");
[self.person willChangeValueForKey:@"age"];
self.person.age = @"40";
[self.person didChangeValueForKey:@"age"];
}
- (void)observeValueForKeyPath:(nullable NSString *)keyPath ofObject:(nullable id)object change:(nullable NSDictionary<NSKeyValueChangeKey, id> *)change context:(nullable void *)context{
NSLog(@"change:%@",change);
}
- (void)dealloc{
[self.person removeObserver:self forKeyPath:@"age"];
[self.person removeObserver:self forKeyPath:@"name"];
}
最终打印数据:
2018-05-22 11:24:04.848995+0700 KVODemo[56630:1864509] 第一次调用KVO
2018-05-22 11:24:04.849307+0700 KVODemo[56630:1864509] change:{
kind = 1;
new = "33-55";
}
2018-05-22 11:24:09.094780+0700 KVODemo[56630:1864509] 第二次次调用KVO:我被点击了,我去触发通知
2018-05-22 11:24:09.095465+0700 KVODemo[56630:1864509] change:{
kind = 1;
new = 40;
}
总结:讲到这里仔细看下代码基础调用原理已经完了。平时我们开发也很少用到这个因为实现手动触发方式有很多。并不一定用的到。
未完,待续
网友评论