objective-c 索引值觀察者KVO模式的學習

來源:互聯網
上載者:User

KVO 索引值觀察者模式是cocoa的一個重要機制類似Notification模式。當被觀察者屬性發生改變時觀察者做相應的操作。

建立一個Person類繼承NSObject,添加name和age屬性,接著建一個PersonObserver類繼承於NSObject同時實現

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context

方法

具體如下:

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{    if ([keyPath isEqualToString:kPathName]) {        NSLog(@"old name:%@ \nnew name:%@", [change objectForKey:@"old"], [change objectForKey:@"new"]);                //Do something what you want to do        //...        return;    }    [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];}

利用keyPath判斷是否是我們監聽的屬性發生了變化,如果是做相應的操作。

為對象添加觀察者:

Person *person = [[Person alloc] init];    [person setName:@"old name"];    PersonObserver *observer = [[PersonObserver alloc] init];        [person addObserver:observer forKeyPath:@"name" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];        [person setName:@"new name"];        [person removeObserver:observer forKeyPath:@"name"];

運行效果:

2013-03-05 16:08:04.347 learnOcKVO[10980:11303] old name:old name new name:new name
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.