美文网首页
iOS中通知实现观察者模式

iOS中通知实现观察者模式

作者: f1e583c455bf | 来源:发表于2017-05-03 15:22 被阅读0次

KVO与通知都可实现观察者模式。

一、通知简介

NSNotificationCenter是一个消息通知机制,类似广播。观察者只需要向消息中心注册消息,当有地方发出这个消息的时候,通知中心会发送给注册这个消息的对象。消息发送者和消息接受者两者可以互相一无所知,完全解耦。
观察者向消息中心注册以后,在不需要接受消息时需要向消息中心注销,属于典型的观察者模式。

消息通知中重要的两个类:
(1) NSNotificationCenter: 实现NSNotificationCenter的原理是一个观察者模式,获得NSNotificationCenter的方法只有一种,那就是[NSNotificationCenter defaultCenter] ,通过调用静态方法defaultCenter就可以获取这个通知中心的对象了。NSNotificationCenter是一个单例模式,而这个通知中心的对象会一直存在于一个应用的生命周期。
(2) NSNotification: 这是消息携带的载体,通过它,可以把消息内容传递给观察者。

二、通知的使用

1、在当前控制器发送通知接收通知

#import "ViewController.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
//1.注册通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(firstNotificationFunc:) name:@"First" object:nil];

}
//2.通知回调方法
- (void)firstNotificationFunc:(NSNotification *)notification{
    NSString *name = [notification name];
    NSLog(@"打印%@",name);
}

//3.销毁
- (void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
//4.发送通知
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"First" object:self];
}
@end

注意:只有注册通知之后才可以接收发送的通知。
通知可传递参数,userInfo、object。
2、在push的下一界面发送通知,在上一控制器接收通知

//第一个控制器
#import "ViewController.h"
#import "NextViewController.h"
@interface ViewController ()
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"第一个控制器";
//1.注册通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(firstNotificationFunc:) name:@"First" object:nil];
}
//2.通知回调方法
- (void)firstNotificationFunc:(NSNotification *)notification{
    NSString *name = [notification name];
    NSLog(@"打印%@%@",self.title,name);
}
//3.销毁
- (void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    NSLog(@"销毁");
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

    //跳转
    NextViewController *vc = [[NextViewController alloc]init];
    [self.navigationController pushViewController:vc animated:YES];
}
@end

**********************************************************

//第二个控制器
#import "NextViewController.h"

@interface NextViewController ()

@end

@implementation NextViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.title = @"第二个控制器";
    self.view.backgroundColor = [UIColor whiteColor];

}
//发送通知
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{   
    [[NSNotificationCenter defaultCenter] postNotificationName:@"First" object:nil];
    
}
@end

//也可以根据通知名移除注册的通知

- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;

三、通知的优缺点

优点:

  1. 不需要编写多少代码,实现比较简单。
  2. 对于一个发出的通知,多个对象能够做出反应,即一对多的消息通知机制。
  3. 可以传递参数,userInfo, object。

缺点:

  1. 在编译器不会检查通知是否能够被观察者正确的处理;
  2. 注册的观察者,一定要移除。
  3. 只有注册了通知,才能接收通知消息。注册通知对象要在发送通知的前面才可接收到通知。
  4. 通知发出后,controller不能从观察者获得任何的反馈信息。

相关文章

  • iOS中通知实现观察者模式

    KVO与通知都可实现观察者模式。 一、通知简介 NSNotificationCenter是一个消息通知机制,类似广...

  • NSNotification&NSNotificatio

    简述 在iOS中,NSNotification & NSNotificationCenter是使用观察者模式来实现...

  • iOS与观察者模式(二)

    上一篇是对观察者模式的概念上的讨论,这一篇是利用通知来实现观察者模式,错误之处敬请批评指正。 代码示例 在iOS中...

  • iOS之自定义通知中心(学习的是思想)

    简述在iOS中,NSNotification & NSNotificationCenter是使用观察者模式来实现的...

  • 常用设计模式整理

    ios面试题(整理) ios常用的设计模式有哪些? MVC模式、委托模式、观察者模式(kvo、kvc、通知机制)、...

  • 2017.4.6 观察者模式

    这块以后再看吧,因为在iOS中总用 主要系统帮着实现的是KVO和通知中心,两个都是观察者模式的具体实现。个人感觉...

  • java设计模式------观察者模式

    该模式业务逻辑写在观察者模式中的观察者内,当被观察者发生改变时,通知观察者进行更新。 类图: 一、自定义实现 1....

  • iOS底层原理 - 设计模式与架构

    面试题引发的思考: Q: 用过哪些设计模式? iOS中主要使用单例模式、代理模式、观察者模式(通知、KVO)。 Q...

  • iOS设计模式总结

    iOS常用的设计模式: KVO/通知 -------> 观察者模式 观察者模式定义了一种一对多的依赖关系,让多个观...

  • iOS设计模式之观察者模式

    iOS 常见的观察者模式主要有通知和 KVO 这两种,通知可以实现一对多的关系, KVO 可以观察属性值的变化.虽...

网友评论

      本文标题:iOS中通知实现观察者模式

      本文链接:https://www.haomeiwen.com/subject/cpictxtx.html