1. 程式人生 > >IOS 觀察者模式

IOS 觀察者模式

               

cocoa框架中很多地方都使用了觀察者模式

一、KVO

Key-Value Observing,它提供一種機制,當指定的物件的屬性被修改後,則物件就會接受到通知。每次指定的被觀察的物件的屬性被修改後,KVO自動通知相應的觀察者。

model中的定義:

複製程式碼
@interface StockData : NSObject {    NSString * stockName;    float price;}@end@implementation StockData@end
複製程式碼

controller中使用,記得上一篇怎麼說的嗎?這裡相當於跟模型說,我要收聽你的更新廣播

複製程式碼
- (void)viewDidLoad{    [super viewDidLoad];    stockForKVO 
= [[StockData alloc] init];    [stockForKVO setValue:@"searph" forKey:@"stockName"];    [stockForKVO setValue:@"10.0" forKey:@"price"];        [stockForKVO addObserver:self forKeyPath:@"price" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:NULL];    myLabel = [[UILabel alloc]initWithFrame:CGRectMake(100
, 100, 100, 30 )];    myLabel.textColor = [UIColor redColor];    myLabel.text = [stockForKVO valueForKey:@"price"];    [self.view addSubview:myLabel];       UIButton * b = [UIButton buttonWithType:UIButtonTypeRoundedRect];    b.frame = CGRectMake(0, 0, 100, 30);    [b addTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:b];}
複製程式碼

使用者單擊View中的button呼叫控制器中的action去更改模型中的資料

-(void) buttonAction{    [stockForKVO setValue:@"20.0" forKey:@"price"];}

控制器需要實現的回撥,相當於收到廣播後我應該做啥事

複製程式碼
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{    if([keyPath isEqualToString:@"price"])    {        myLabel.text = [stockForKVO valueForKey:@"price"];    }}
複製程式碼

檢視dealloc需要取消觀察

- (void)dealloc{    [super dealloc];    [stockForKVO removeObserver:self forKeyPath:@"price"];    [stockForKVO release];}

二、Notification

通知使用起來非常的簡單:

首先定義回撥,即發生通知了我應該做啥事。

- (void)callBack{    NSLog(@"我收到通知了!");}

其次,註冊通知,即告訴通知中心,我對啥通知感興趣

[[NSNotificationCenter defaultCenter] addObserver: self    selector: @selector(callBack)    name: @"A類通知"    object: nil];

第三,在程式任何一個地方都可以傳送通知

- (void)getNotofocation{    NSLog(@"get it.");    //發出通知    [[NSNotificationCenter defaultCenter] postNotificationName:@"A類通知" object:self];}

當然,也可以在需要的時候取消註冊通知。