iOS 的通知中心简介

来源:互联网 发布:qq农场白萝卜数据 编辑:程序博客网 时间:2024/04/28 01:45

1、NSNotification

这个类可以理解为一个消息对象,其中有三个成员变量。

这个成员变量是这个消息对象的唯一标识,用于辨别消息对象。

@property (readonlycopyNSString *name;


这个成员变量定义一个对象,可以理解为针对某一个对象的消息。

@property (readonly,strongid object;


这个成员变量是一个字典,可以用其来进行传值。

@property (readonlycopyNSDictionary *userInfo;


NSNotification的初始化方法:

- (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;

+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject;


+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;


注意:官方文档有明确的说明,不可以使用init进行初始化

2、NSNotificationCenter

这个类是一个通知中心,使用单例设计,每个应用程序都会有一个默认的通知中心。用于调度通知的发送的接受。

添加一个观察者,可以为它指定一个方法,名字和对象。接受到通知时,执行方法。

- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;


发送通知消息的方法

- (void)postNotification:(NSNotification *)notification;

- (void)postNotificationName:(NSString *)aName object:(id)anObject;

- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;


移除观察者的方法

- (void)removeObserver:(id)observer;

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


几点注意:

1、如果发送的通知指定了object对象,那么观察者接收的通知设置的object对象与其一样,才会接收到通知,但是接收通知如果将这个参数设置为了nil,则会接收一切通知。

2、观察者的SEL函数指针可以有一个参数,参数就是发送的对象本身,可以通过这个参数取到消息对象的userInfo,实现传值。


二、通知的使用流程

首先,我们在需要接收通知的地方注册观察者,比如:

?

    //获取通知中心单例对象

    NSNotificationCenter * center = [NSNotificationCenter defaultCenter];

   //添加当前类对象为一个观察者,nameobject设置为nil,表示接收一切通知

    [center addObserver:self selector:@selector(notice:) name:@"张三" object:nil];

之后,在我们需要时发送通知消息

?


    //创建一个消息对象  名字最好用宏定义,起的长一点    NSNotification * notice = [NSNotification notificationWithName:@"张三" object:nil userInfo:@{@"1":@"123"}];    //发送消息    [[NSNotificationCenter defaultCenter]postNotification:notice];

我们可以在回调的函数中取到userInfo内容,如下:

?
1
2
3
-(void)notice:(id)sender{
    NSLog(@"%@",sender);
}

打印出来的

2016-02-01 18:28:50.847 通知[4189:2023509] NSConcreteNotification 0x7fdb887031d0 {name =张三; userInfo = {

    1 = 123;

}}



#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

找到别人的一个通知的一个简单示例:

[objc] view plaincopyprint?
  1. //  
  2. //  main.m  
  3. //  notice  
  4. //  
  5. //  Copyright (c) 2015年 juanjuan. All rights reserved.  
  6. //  
  7.   
  8. #import <Foundation/Foundation.h>  
  9. #import "Person.h"  
  10. #import "NewsCompany.h"  
  11.   
  12.   
  13. int main(int argc, const charchar * argv[]) {  
  14.     @autoreleasepool {  
  15.           
  16.         //1.初始化机构  
  17.         NewsCompany *tx = [[NewsCompany alloc] init];  
  18.         tx.name = @"腾讯新闻";  
  19.           
  20.         NewsCompany *sina = [[NewsCompany alloc] init];  
  21.         sina.name = @"新浪新闻";  
  22.      
  23.           
  24.         //2.初始化三个人  
  25.         Person *zhangsan = [[Person alloc] init];  
  26.         zhangsan.name = @"张三";  
  27.           
  28.         Person *lisi = [[Person alloc] init];  
  29.         lisi.name = @"李四";  
  30.           
  31.         Person *wangwu = [[Person alloc] init];  
  32.         wangwu.name = @"王五";  
  33.           
  34.           
  35.         NSNotificationCenter *center = [NSNotificationCenter defaultCenter];  
  36.   
  37.           
  38.         //3.注册通知的监听器(即能监听通知)  
  39.         //  添加监听器  
  40.         //张三只接收腾讯的军事新闻  
  41.         [center addObserver:zhangsan selector:@selector(newsCome:) name:@"junshi_news_come" object:tx];  
  42.         [center addObserver:wangwu   selector:@selector(newsCome:) name:@"yule_news_come"   object:sina];  
  43.           
  44.         //4.模拟发布新闻  
  45.         //tx发布了一则军事新闻,名字是junshi_news_come  
  46.         [center postNotificationName:@"junshi_news_come"  
  47.                               object:tx  
  48.                             userInfo:@{@"title":@"伊拉克战争停止了",  
  49.                                        @"intro":@"伊拉克战争。。。。。。。。。"}];  
  50.           
  51.           
  52.         [center postNotificationName:@"yule_news_come"  
  53.                               object:sina  
  54.                             userInfo:@{@"title":@"啊呜啊呜啊呜",  
  55.                                        @"intro":@"----================。。。。。。。。。"}];  
  56.           
  57.           
  58.         //最后一定要移除下监听  
  59.       
  60.     }  
  61.     return 0;  
  62. }  











0 0
原创粉丝点击