• KVO


    【基本概念】

          键值观察是一种使对象获取其他对象的特定属性变化的通知机制。控制器层的绑定技术就是严重依赖键值观察获得模型层和控制器层的变化通知的。对于不依赖控制器层类的应用程序,键值观察提供了一种简化的方法来实现检查器并更新用户界面值。

          与NSNotification不同,键值观察并没有所谓的中心对象来为所有观察者提供变化通知。取而代之的,当有变化发生时,通知被直接发送至处于观察状态的对象。NSObject提供这种基础的键值观察实现方法,你几乎不用重写该方法。

          你可以观察任意对象属性,包括简单属性,对一或是对多关系。对多关系的观察者将会被告知发生变化的类型-也就是任意发生变化的对象。键值观察为所有对象提供自动观察兼容性。你可以通过禁用自动观察通知并实现手动通知来筛选通知。

    【注册观察者】

         为了正确接收属性的变更通知,观察者必须首先发送一个addObserver:forKeyPath:options:context:消息至被观察对象,用以传送观察对象和需要观察的属性的关键路径,以便与其注册。选项参数指定了发送变更通知时提供给观察者的信息。使用NSKeyValueObservingOptionOld选项可以将初始对象值以变更字典中的一个项的形式提供给观察者。指定NSKeyValueObservingOptionNew选项可以将新的值以一个项的形式添加至变更字典。你可以使用逐位“|”这两个常量来指定接受上述两种类型的值。

    下面我通过几个实例来带大家实现一下KVO的通知机制:

    【实例一】对基本数据类型的属性进行观察

    (1)我建立的是一个基于OC的iOS项目,在storyboard中拖入一个按钮,并在ViewController中使用IBAction实现按钮点击。

    (2)声明一个int类型的属性在ViewController.m文件中:

      1. @interface ViewController ()  
      2.   
      3. @property(assign,nonatomic) int count;  
      4.   
      5. @end  

    (3)然后实现一个初始化方法,初始化count的值:

      1. - (instancetype)init  
      2. {  
      3.   self = [super init];  
      4.   if (self) {  
      5.     self.count = 1;  
      6.   }  
      7.   return self;  
      8. }  


    (4)在按钮点击响应中进行自加运算,以后我就监听点击按钮count数值改变的这个事件:

     
      1. - (IBAction)clicked:(id)sender {  
      2.     
      3.   self.count++;  
      4.     
      5. }  


    (5)在viewDidLoad方法中注册观察事件:

     
      1. - (void)viewDidLoad {  
      2.   [super viewDidLoad];  
      3.       
      4.   [self addObserver:self forKeyPath:@"count" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];  
      5.     
      6. }  


    (6)最后重写一个方法observeValueForKeyPath;如下:

     
      1. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(voidvoid *)context{  
      2.   
      3.   if ([keyPath  isEqual: @"count"]) {  
      4.     NSLog(@"count = %d",self.count);  
      5.   }  
      6.     
      7. }  


    (7)输出结果如下:每当我点击按钮,观察事件就会调用注册的方法。

    【实例二】对 对象进行观察

    (1)在上述的基础上,新建一个Other类,在h头文件中声明一个变量:

     
    1. #import <Foundation/Foundation.h>  
    2.   
    3. @interface Other : NSObject  
    4.   
    5. @property(assign,nonatomic) int number;  
    6.   
    7. @end  

    (2)在Other.m文件中实现初始化方法,初始化number变量:

     
    1. #import "Other.h"  
    2.   
    3. @implementation Other  
    4.   
    5. - (instancetype)init  
    6. {  
    7.   self = [super init];  
    8.   if (self) {  
    9.     self.number = 100;  
    10.   }  
    11.   return self;  
    12. }  
    13.   
    14.   
    15. @end  

    (3)在ViewController.m中实现如下:

     
    1. #import "ViewController.h"  
    2. #import "Other.h"  
    3.   
    4. @interface ViewController ()  
    5.   
    6. @property(strong,nonatomic) Other *other;  
    7.   
    8. @end  
    9.   
    10. @implementation ViewController  
    11.   
    12. - (void)viewDidLoad {  
    13.   [super viewDidLoad];  
    14.     
    15.   //监听Other类;  
    16.   self.other = [[Other alloc] init];  
    17.   [self.other addObserver:self forKeyPath:@"number" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];  
    18.     
    19.     
    20. }  
    21.   
    22. - (IBAction)clicked:(id)sender {  
    23.     
    24.   _other.number++;  
    25.     
    26. }  
    27.   
    28. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(voidvoid *)context{  
    29.     
    30.   
    31.   //我假设能被2整除时输出,注意我使用的是keyPath进行匹配;  
    32.   if ([keyPath  isEqual: @"number"] && _other.number % 2 == 0){  
    33.     
    34.     NSLog(@"other.number = %d",_other.number);  
    35.       
    36.   }  
    37.      
    38. }  
    39.   
    40.   
    41. @end  



    (4)输出结果如下:

    【实例三】同时对多个对象进行观察

      在上述【实例一】【实例二】的基础上,我同时对两个变量进行观察,其他类中的实现不变,ViewController.m中的实现如下:

    1. #import "ViewController.h"  
    2. #import "Other.h"  
    3.   
    4. @interface ViewController ()  
    5.   
    6. @property(assign,nonatomic) int count;  
    7. @property(strong,nonatomic) Other *other;  
    8.   
    9. @end  
    10.   
    11. @implementation ViewController  
    12.   
    13. - (void)viewDidLoad {  
    14.   [super viewDidLoad];  
    15.     
    16.     
    17.   [self addObserver:self forKeyPath:@"count" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];  
    18.     
    19.   //监听Other类;  
    20.   self.other = [[Other alloc] init];  
    21.   [self.other addObserver:self forKeyPath:@"number" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];  
    22.     
    23.     
    24. }  
    25.   
    26.   
    27. - (instancetype)init  
    28. {  
    29.   self = [super init];  
    30.   if (self) {  
    31.     self.count = 1;  
    32.   }  
    33.   return self;  
    34. }  
    35.   
    36.   
    37. - (IBAction)clicked:(id)sender {  
    38.     
    39.   _other.number++;  
    40.   self.count++;  
    41.     
    42.     
    43. }  
    44.   
    45. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(voidvoid *)context{  
    46.     
    47.     
    48.   if (object == self.other) {  
    49.     NSLog(@"number = %d",_other.number);  
    50.   }  
    51.   else if (object == self && self.count % 2 == 0){  
    52.       
    53.     NSLog(@"count = %d",self.count);  
    54.   }  
    55.     
    56. }  
    57.   
    58.   
    59. @end  


    输出结果如下:

    【实例四】使用change参数实时观察参数变化

    ViewController.m中的实现如下:

    1. #import "ViewController.h"  
    2. #import "Other.h"  
    3.   
    4. @interface ViewController ()  
    5.   
    6. @property(assign,nonatomic) int count;  
    7. @property(strong,nonatomic) Other *other;  
    8.   
    9. @end  
    10.   
    11. @implementation ViewController  
    12.   
    13. - (void)viewDidLoad {  
    14.   [super viewDidLoad];  
    15.     
    16.     
    17.   [self addObserver:self forKeyPath:@"count" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];  
    18.     
    19. }  
    20.   
    21.   
    22. - (instancetype)init  
    23. {  
    24.   self = [super init];  
    25.   if (self) {  
    26.     self.count = 1;  
    27.   }  
    28.   return self;  
    29. }  
    30.   
    31.   
    32. - (IBAction)clicked:(id)sender {  
    33.     
    34.   _other.number++;  
    35.   self.count++;  
    36.     
    37.     
    38. }  
    39.   
    40. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(voidvoid *)context{  
    41.     
    42.     
    43. //在这里对观察变量进行打印;  
    44.     
    45.   NSLog(@"%@",change);  
    46.     
    47.     
    48. }  
    49.   
    50.   
    51. @end  


    输出结果如下:

  • 相关阅读:
    谈谈目前书店里面的计算机书籍“含量”情况 发发看法
    注意:CSS中加入中文注释,会使.NET中样式丢失
    今天很是郁闷
    用周末的时间,通过BT终于把VS2005Team版下载下来啦~~~
    今天在网上找到了两个常用建模工具的下载地址 ,速度还不错
    C#下如何实现服务器+客户端的聊天程序
    CSS网页制作技巧:图片的自适应居中和兼容处理(转)
    SASS用法指南(转)
    CSS选择器学习小结
    JavaScript编写计算器《JavaScript王者归来》读书笔记1
  • 原文地址:https://www.cnblogs.com/guangleijia/p/4923680.html
Copyright © 2020-2023  润新知