iOS NSNotificationCenter与自定义通知的封装(PSSNotificationCenter)

前言

作为iOS开发者,大家应该都使用过系统通知(NSNotificationCenter),无非就是三步,1. 注册通知,2.发送通知,3.销毁观察者,我在这里就不多解释了;。如果忘记销毁观察者,ios9之前是会崩溃的。因此我就有了自己实现全局一对多分发通知的想法,于是封装了PSSNotificationCenter

系统通知如何使用

通知的使用为3步:

  1. 注册通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveSysNoti) name:@"target" object:nil];

- (void)receiveSysNoti:(NSNotification *)noti {
    NSLog(@"%@", [[NSThread currentThread] isMainThread] ? @"收到系统通知:主线程" : @"收到系统通知:子线程");
}
  1. 在需要的时候发送通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"target" object:nil];
  1. 移出观察者
    如果iOS9之前,不移除观察者是会崩溃的,而且崩溃不会有断点,如果你继承了友盟,甚至不会给你打印崩溃信息,很难找,所以务必要记得。
	// 移除目标所有通知
	[[NSNotificationCenter defaultCenter] removeObserver:self];
	// 移除目标对应通知
    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"target" object:nil];

系统通知还可以使用block的方式:

但是使用block方式会有内存问题,即便用上面两个方法移除,block本身依旧被NotificationCenter持有,当发送通知时依然会运行;请看代码

// 注册通知
[[NSNotificationCenter defaultCenter] addObser
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
iOS 中,可以使用通知(NSNotification)机制来实现组件间的解耦和消息传递。通知是一种广播机制,一个组件可以发布(post)一个通知,其他组件可以订阅(observe)这个通知,并在接收到通知时执行相应的操作。下面是一个通知的实例说明。 假设我们有一个应用程序,在其中有两个视图控制器 AViewController 和 BViewController。AViewController 中有一个按钮,当用户点击按钮时,我们希望 BViewController 接收到一个通知,并在接收到通知时更新界面。 首先,在 BViewController 中,我们需要注册一个通知观察者,代码如下: ``` - (void)viewDidLoad { [super viewDidLoad]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:@"MyNotification" object:nil]; } - (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self]; } - (void)handleNotification:(NSNotification *)notification { // 处理通知 NSLog(@"Received notification: %@", notification); } ``` 在这里,我们使用 defaultCenter 对象注册了一个观察者,指定了通知的名称为 MyNotification。当通知被发布时,handleNotification 方法会被调用,并且可以在方法中处理通知。 接下来,在 AViewController 中,我们需要发布一个通知,代码如下: ``` - (IBAction)postNotification:(id)sender { [[NSNotificationCenter defaultCenter] postNotificationName:@"MyNotification" object:nil userInfo:@{@"key": @"value"}]; } ``` 在这里,我们使用 defaultCenter 对象发布了一个通知,指定了通知的名称为 MyNotification,没有指定通知的发送者,同时可以携带一些额外的信息,例如 userInfo 字典中的键值对。 当用户点击 AViewController 中的按钮时,就会触发 postNotification 方法,同时 BViewController 中的 handleNotification 方法也会被调用,并且可以在其中处理通知。 总之,通知机制是一种非常方便的组件间通信方式,可以实现解耦和消息传递。在使用通知时,需要注意及时注册和注销观察者,并且指定通知的名称和携带的信息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值