码迷,mamicode.com
首页 > 移动开发 > 详细

浅谈iOS里面的KVO模式

时间:2016-04-11 23:49:35      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

 

 

本文转自: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
技术分享
1
2
3
4
5
#import "StockData.h"
 
@implementation StockData
 
@end

 

2.定义此model为Controller的属性,实例化它,监听它的属性,并显示在当前的View里边

 

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

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- (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"];
}

 

浅谈iOS里面的KVO模式

标签:

原文地址:http://www.cnblogs.com/layios/p/5380411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!