KVO,即:Key-Value Observing,它提供一種機制,當指定的對象的屬性被修改後,則對象就會接受到通知。簡單的說就是每次指定的被觀察的對象的屬性被修改後,KVO就會自動通知相應的觀察者了。程序員
系統框架已經支持KVO,因此程序員在使用的時候很是簡單。框架
1. 註冊,指定被觀察者的屬性,dom
2. 實現回調方法ide
3. 移除觀察編碼
工程程序以下:atom
StockData.hspa
#import <Foundation/Foundation.h> @interface StockData : NSObject { NSString * stockName; float price; } @end
StockData.m3d
#import "StockData.h" @implementation StockData @end
這裏定義屬性是在ViewController.m文件裏定義的,而ViewController.h裏沒有內容,故而沒有列舉出來。code
ViewController.morm
#import "ViewController.h" #import "StockData.h" @interface ViewController () @property(strong,nonatomic) UILabel *myLable; @property(strong,nonatomic) StockData *stockforKVO; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; self.stockforKVO=[[StockData alloc] init]; [self.stockforKVO setValue:@"searph" forKey:@"stockName"]; [self.stockforKVO setValue:@"10.0" forKey:@"price"]; [self.stockforKVO addObserver:self forKeyPath:@"price" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:nil]; self.myLable = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 30 )]; self.myLable.textColor = [UIColor redColor]; self.myLable.text = [NSString stringWithFormat:@"%@",[self.stockforKVO valueForKey:@"price"]]; [self.view addSubview:self.myLable]; UIButton * b = [UIButton buttonWithType:UIButtonTypeRoundedRect]; b.frame = CGRectMake(0, 0, 100, 30); b.backgroundColor=[UIColor redColor]; [b addTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:b]; } -(void)buttonAction { // 點擊按鈕 切換數值 [self.stockforKVO setValue:[NSString stringWithFormat:@"%d",arc4random()%1000] forKey:@"price"]; } -(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context{ if ([keyPath isEqualToString:@"price"]) { self.myLable.text= [NSString stringWithFormat:@"%@",[self.stockforKVO valueForKey:@"price"]]; NSLog(@"舊數據--%@--,新數據--%@--",[change objectForKey:@"old"],[change objectForKey:@"new"]); } } /* -(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { if([keyPath isEqualToString:@"price"]) { self.myLable.text=[NSString stringWithFormat:@"%@",[self.stockforKVO valueForKey:@"price"]]; } } */ /** * 移除觀察者 */ -(void)dealloc { [self.stockforKVO removeObserver:self forKeyPath:@"price"]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end
程序解析以下:
//StockData.h
#import <Foundation/Foundation.h> @interface StockData : NSObject { NSString * stockName; float price; } @end
//StockData.m
#import "StockData.h"
@implementation StockData @end
- (void)viewDidLoad { [super viewDidLoad]; self.stockforKVO=[[StockData alloc] init]; [self.stockforKVO setValue:@"searph" forKey:@"stockName"]; [self.stockforKVO setValue:@"10.0" forKey:@"price"]; [self.stockforKVO addObserver:self forKeyPath:@"price" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:nil]; self.myLable = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 30 )]; self.myLable.textColor = [UIColor redColor]; self.myLable.text = [NSString stringWithFormat:@"%@",[self.stockforKVO valueForKey:@"price"]]; [self.view addSubview:self.myLable]; UIButton * b = [UIButton buttonWithType:UIButtonTypeRoundedRect]; b.frame = CGRectMake(0, 0, 100, 30); b.backgroundColor=[UIColor redColor]; [b addTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:b]; }
3.當點擊button的時候,調用buttonAction方法,修改對象的屬性
-(void)buttonAction { // 點擊按鈕 切換數值 [self.stockforKVO setValue:[NSString stringWithFormat:@"%d",arc4random()%1000] forKey:@"price"]; }
4. 實現回調方法
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context{ if ([keyPath isEqualToString:@"price"]) { self.myLable.text= [NSString stringWithFormat:@"%@",[self.stockforKVO valueForKey:@"price"]]; NSLog(@"舊數據--%@--,新數據--%@--",[change objectForKey:@"old"],[change objectForKey:@"new"]); } } /* -(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { if([keyPath isEqualToString:@"price"]) { self.myLable.text=[NSString stringWithFormat:@"%@",[self.stockforKVO valueForKey:@"price"]]; } } */
/** * 移除觀察者 */ -(void)dealloc { [self.stockforKVO removeObserver:self forKeyPath:@"price"]; }