Objective-C 观察者模式--简单介绍和使用

观察者模式(有时又被称为发布-订阅模式)

在此种模式中,一个目标物件管理所有相依于它的观察者物件,并且在它本身的状态改变时主动发出通知。

这通常透过呼叫各观察者所提供的方法来实现。此种模式通常被用来实现事件处理系统。

比如我们订阅杂志, 会有一个订阅服务中心, 他负责管理期刊号, 添加用户 和 发送期刊

这里订阅服务中, 期刊, 用户 我们看做3个因素:

用户要订阅, 需要遵循一定的订阅规范(协议)

期刊要能记录有哪些订阅用户

订阅服务中心负责管理, 当有某一期刊更新时, 通知该期刊的订阅用户或者发送新期刊给订阅用户

下面我们依照这个思路构造工程

这里把订阅服务中心看做一个对象, 并把它设计成一个单例 因为一般只会有一个订阅服务中心管理所有的期刊和用户

订阅服务中心对象有以下功能:

添加/删除期刊, 给某一期刊添加/删除订阅用户, 检查期刊号是否存在, 当有更新时通知订阅用户

期刊管理订阅用户信息时, 不能持有订阅用户对象造成内存泄露, 所以用NSHashTable来保存用户信息

用户要遵守一个订阅规范(协议)

SubscriptionCustomerProtocol.h

#import <Foundation/Foundation.h>

@protocol SubscriptionCustomerProtocol <NSObject>

@required
- (void)subscriptionMessage:(id)message subscriptionNumber:(NSString *)subscriptionNumber;

@end

下面构造订阅服务中心对象-用单例模式

SubscriptionServiceCenter.h

#import <UIKit/UIKit.h>
#import "SubscriptionCustomerProtocol.h"

@interface SubscriptionServiceCenter : NSObject

/**
 初始化单例方法

 @return 返回单例对象
 */
+ (instancetype)shareInstance;

/**
 alloc初始化方法

 @param zone 地址空间
 @return 返回单例对象
 */
+ (id)allocWithZone:(struct _NSZone *)zone;

/**
 copy方法

 @param zone 地址空间
 @return 返回单例对象
 */
- (id)copWithZone:(struct _NSZone *)zone;

#pragma mark - 维护订阅信息
/**
 创建订阅号

 @param subscriptionNumber 订阅号码
 */
- (void)createSubscriptionNumber:(NSString *)subscriptionNumber;

/**
 删除订阅号

 @param subscriptionNumber 订阅号码
 */
- (void)removeSubscriptionNUmber:(NSString *)subscriptionNumber;

#pragma mark - 维护客户信息
/**
 添加客户到具体的订阅号中

 @param customer 客户
 @param subscriptionNumber 订阅号码
 */
- (void)addCustomer:(id <SubscriptionCustomerProtocol>)customer withSubscriptionNumber:(NSString *)subscriptionNumber;

/**
 从具体订阅号中移除客户

 @param customer 客户
 @param subscriptionNumber 订阅号码
 */
- (void)removeCustomer:(id <SubscriptionCustomerProtocol>)customer withSubcriptionNumber:(NSString *)subscriptionNumber;

/**
 发送消息到具体的订阅号中

 @param message 消息
 @param subscriptionNumber 订阅号码
 */
- (void)sendMessage:(id)message toSubscriptionNumber:(NSString *)subscriptionNumber;

/**
 获取用户列表

 @param subscriptionNumber 订阅号码
 @return 返回用户列表
 */
- (NSHashTable *)existSubscriptionNumber:(NSString *)subscriptionNumber;

@end

SubscriptionServiceCenter.m

#import "SubscriptionServiceCenter.h"

static NSMutableDictionary *_subscriptionDictionary = nil;

@implementation SubscriptionServiceCenter

static SubscriptionServiceCenter *_instance = nil;

+ (instancetype)shareInstance {
    
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        _subscriptionDictionary = [NSMutableDictionary dictionary];
        _instance = [[super allocWithZone:NULL] init];
    });
    
    return _instance;
}

+ (id)allocWithZone:(struct _NSZone *)zone {
    
    return [SubscriptionServiceCenter shareInstance];
}

- (id)copWithZone:(struct _NSZone *)zone {
    
    return [SubscriptionServiceCenter shareInstance];
}

- (void)createSubscriptionNumber:(NSString *)subscriptionNumber {
    
    NSParameterAssert(subscriptionNumber);
    
    NSHashTable *hashTable = [self existSubscriptionNumber:subscriptionNumber];
    if (hashTable == nil) {
        
        hashTable = [NSHashTable weakObjectsHashTable];
        [_subscriptionDictionary setObject:hashTable forKey:subscriptionNumber];
    }
}

- (void)removeSubscriptionNUmber:(NSString *)subscriptionNumber {
    
    NSParameterAssert(subscriptionNumber);
    
    NSHashTable *hashTable = [self existSubscriptionNumber:subscriptionNumber];
    if (hashTable) {
        
        [_subscriptionDictionary removeObjectForKey:subscriptionNumber];
    }
}

- (void)addCustomer:(id <SubscriptionCustomerProtocol>)customer withSubscriptionNumber:(NSString *)subscriptionNumber {
    
    NSParameterAssert(customer);
    NSParameterAssert(subscriptionNumber);
    
    NSHashTable *hashTable = [self existSubscriptionNumber:subscriptionNumber];
    [hashTable addObject:customer];
}

- (void)removeCustomer:(id <SubscriptionCustomerProtocol>)customer withSubcriptionNumber:(NSString *)subscriptionNumber {
    
    NSParameterAssert(subscriptionNumber);
    
    NSHashTable *hashTable = [self existSubscriptionNumber:subscriptionNumber];
    [hashTable removeObject:customer];
}

- (void)sendMessage:(id)message toSubscriptionNumber:(NSString *)subscriptionNumber {

    NSParameterAssert(subscriptionNumber);
    
    NSHashTable *hashTable = [self existSubscriptionNumber:subscriptionNumber];
    if (hashTable) {

        NSEnumerator *enumerator = [hashTable objectEnumerator];
        id <SubscriptionCustomerProtocol> object = nil;
        while (object = [enumerator nextObject]) {

            if ([object respondsToSelector:@selector(subscriptionMessage: subscriptionNumber:)]) {

                [object subscriptionMessage:message subscriptionNumber:subscriptionNumber];
            }
        }
    }
}

- (NSHashTable *)existSubscriptionNumber:(NSString *)subscriptionNumber {
    
    return [_subscriptionDictionary objectForKey:subscriptionNumber];
}

@end

下面在Controller中实现, Controller作为用户即观察者

#import "ViewController.h"
#import "SubscriptionCustomerProtocol.h"
#import "SubscriptionServiceCenter.h"

static NSString * SCIENCE = @"SCIENCE";

@interface ViewController () <SubscriptionCustomerProtocol>

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //创建一个订阅服务中心单例
    SubscriptionServiceCenter *center = [SubscriptionServiceCenter shareInstance];
    
    //创建一个订阅号
    [center createSubscriptionNumber:SCIENCE];
    
    //添加一个用户
    [center addCustomer:self withSubscriptionNumber:SCIENCE];
    
    //发送一个通知消息
    [center sendMessage:@"有新的期刊啦" toSubscriptionNumber:SCIENCE];
    
}

#pragma mark - SubscriptionCustomerProtocol
- (void)subscriptionMessage:(id)message subscriptionNumber:(NSString *)subscriptionNumber {
    
    NSLog(@"期刊号: %@ 收到消息: %@", subscriptionNumber, message);
}


@end

Cocoa touch中的KVO和NSNotificationCenter的原理是观察模式的很好实现, 下面用代码分别演示下用法

KVO的用法

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    self.model = [Model new];
    
    //添加KVO
    [self.model addObserver:self
                 forKeyPath:@"name"
                    options:NSKeyValueObservingOptionNew
                    context:nil];
    
    //发送信息, 通过修改属性
    self.model.name = @"v1.0";
     
}

#pragma mark - KVO方法
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context {
    NSLog(@"%@", change);
}

- (void)dealloc {

    //移除KVO
    [self.model removeObserver:self
                    forKeyPath:@"name"];
}

NSNotificationCenter的用法

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    //添加
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(notificationCenterEvent:)
                                                 name:@"SCIENCE"
                                               object:nil];
    
    //发送信息
    [[NSNotificationCenter defaultCenter] postNotificationName:@"SCIENCE"
                                                        object:@"v1.0"];
    
}

#pragma mark - 通知中心方法
- (void)notificationCenterEvent:(id)sender {
    NSLog(@"%@", sender);
}

- (void)dealloc {
    //移除通知中心
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                              forKeyPath:@"SCIENCE"];

}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • 什么是观察者模式?我们先打个比方,这就像你订报纸。比如你想知道美国最近放生了些新闻,你可能会订阅一份美国周刊,然后...
    泥孩儿0107阅读 664评论 0 0
  • 1 场景问题# 1.1 订阅报纸的过程## 来考虑实际生活中订阅报纸的过程,这里简单总结了一下,订阅报纸的基本流程...
    七寸知架构阅读 4,569评论 5 57
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,587评论 18 139
  • 设计模式 1.delegate和notification什么区别,什么情况使用? 2.描述一下KVO和KVC。 K...
    丶逐渐阅读 1,950评论 3 2
  • 今天利用碎片时间看了十多页毛姆的《月亮与六便士》,随后读了入江之鲸的几篇爆款文。 说到爆款文,就想多说一句:平日里...
    左佳妮阅读 194评论 0 0