(IOS)NSNotificationCenter

1、NSNotification

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

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

@property (readonly, copy) NSString *name;

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

@property (readonly, retain) id object;

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

@property (readonly, copy) NSDictionary *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,实现传值。

3、NSNotification的三种使用方式

1、不传递参数, 最常用的一种

// 发送通知

-(void)btn1Click{

[[NSNotificationCenter defaultCenter] postNotificationName:@"notifyName1" object:nil];

}

//注册通知(接收,监听,一个通知)

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notification1) name:@"notifyName1" object:nil];

//实现方法

-(void)notification1{

NSLog(@"接收 不带参数的消息");

}

2、使用object 传递消息

//发通知

-(void)btn2Click:(UIButton *)btn{

[[NSNotificationCenter defaultCenter] postNotificationName:@"notifyName2" object:[NSString stringWithFormat:@"%@",btn.titleLabel.text]];

}

//注册通知(接收,监听,一个通知)

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notification2:) name:@"notifyName2" object:nil];

//实现方法

-(void)notification2:(NSNotification *)noti{

//使用object处理消息

NSString *info = [noti object];

NSLog(@"接收 object传递的消息:%@",info);

}

3、使用userInfo 传递消息

//发通知

-(void)btn3Click{

NSDictionary *dic = [NSDictionary dictionaryWithObject:@"userInfo消息" forKey:@"param"];

[[NSNotificationCenter defaultCenter] postNotificationName:@"nitifyName3" object:nil userInfo:dic];

}

//注册通知(接收,监听,一个通知)

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notification3:) name:@"nitifyName3" object:nil];

//实现方法

-(void)notification3:(NSNotification *)noti{

//使用userInfo处理消息

NSDictionary  *dic = [noti userInfo];

NSString *info = [dic objectForKey:@"param"];

NSLog(@"接收 userInfo传递的消息:%@",info);

}

最后,在[接收]消息的页面,在dealloc方法里面移除观察者。

-(void)dealloc{

//移除观察者

[[NSNotificationCenter defaultCenter] removeObserver:self];

}

[拓展]在大的项目中, 由于通知较多, 建立一个文件统一管理通知名, 通知名定义为常量

NotifyConst.h

#import

// extern : 引用本类或者其他类中使用

// xxA类通知

extern NSString *const NotifyName1;

extern NSString *const NotifyName2;

// xxB类通知

extern NSString *const xxx

extern NSString *const xxx

//xxC类通知

extern NSString *const xxx;

NotifyConst.m

/**

常量值

.m 文件中进行赋值  const:标识后面的东西是不可修改的

*/

// xxA类通知

NSString *const NotifyName1 = @"NotifyName1";

NSString *const NotifyName2 = @"NotifyName2";

// xxB类通知

NSString *const xxx = ...'

NSString *const xxx = ....

最后, 在pch文件中加入NotifyConst.h就行了

你可能感兴趣的:((IOS)NSNotificationCenter)