Objective-C文法之KVO使用

來源:互聯網
上載者:User

標籤:

 本文轉自:http://blog.csdn.net/yuquan0821/article/details/6646400/ 一,概述

KVO,即:Key-Value Observing,它提供一種機制,當指定的對象的屬性被修改後,則對象就會接受到通知。簡單的說就是每次指定的被觀察的對象的屬性被修改後,KVO就會自動通知相應的觀察者了。

二,使用方法

系統架構已經支援KVO,所以程式員在使用的時候非常簡單。

1. 註冊,指定被觀察者的屬性,

2. 實現回調方法

3. 移除觀察

三,執行個體:

假設一個情境,股票的價格顯示在當前螢幕上,當股票價格更改的時候,即時顯示更新其價格。

1.定義StockData

#import <Foundation/Foundation.h>@interface StockData : NSObject{    NSString *stockNmae;    float price;}@end
#import "StockData.h"@implementation StockData@end

 

2.定義此model為Controller的屬性,執行個體化它,監聽它的屬性,並顯示在當前的View裡邊

 

@interface ViewController ()@property(nonatomic,strong)StockData *stcokForKVO;@property(nonatomic,strong)UILabel *mylabel;@end

 

- (void)viewDidLoad {    [super viewDidLoad];    self.stcokForKVO=[[StockData alloc]init];    [self.stcokForKVO setValue:@"searph" forKey:@"stockNmae"];    [self.stcokForKVO setValue:@"10.0" forKey:@"price"];    [self.stcokForKVO addObserver:self forKeyPath:@"price" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:nil];        self.mylabel=[[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 30)];    self.mylabel.textColor=[UIColor redColor];    self.mylabel.text= [NSString stringWithFormat:@"%@",[self.stcokForKVO valueForKey:@"price"]];    [self.view addSubview:self.mylabel];        UIButton *b=[UIButton buttonWithType:UIButtonTypeRoundedRect];    b.frame=CGRectMake(50, 50, 100, 30);    b.backgroundColor=[UIColor blueColor];    [b addTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:b];    }

 


3.當點擊button的時候,調用buttonAction方法,修改對象的屬性

-(void)buttonAction{    [self.stcokForKVO 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.mylabel.text= [NSString stringWithFormat:@"%@",[self.stcokForKVO valueForKey:@"price"]];        NSLog(@"舊資料--%@--,新資料--%@--",[change objectForKey:@"old"],[change objectForKey:@"new"]);    }}

 

 

5.增加觀察與取消觀察是成對出現的,所以需要在最後的時候,移除觀察者

 

-(void)dealloc{    [self.stcokForKVO removeObserver:self forKeyPath:@"price"];}

 

 

四,小結KVO這種編碼方式使用起來很簡單,很適用與datamodel修改後,引發的UIVIew的變化這種情況,就像上邊的例子那樣,當更改屬性的值後,監聽對象會立即得到通知。

Objective-C文法之KVO使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.