iOS消息通知Notification的用法

Posted 洛洛沙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS消息通知Notification的用法相关的知识,希望对你有一定的参考价值。

1.发送消息

1 NSNotification *notification = [NSNotification notificationWithName:@"selectPosition" object:nil userInfo:@"codeABC" forKey:@"code"];
2 [[NSNotificationCenter defaultCenter]postNotification:notification];

2.接收消息

1 - (void)viewDidLoad {
2     [super viewDidLoad];  
3     [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(selectPosition:) name:@"selectPosition" object:nil];
4 }
5 
6 - (void)selectPosition:(NSNotification *)notification
7 {
8     NSString *code = [notification.userInfo objectForKey:@"code"];
9 }

 

以上是关于iOS消息通知Notification的用法的主要内容,如果未能解决你的问题,请参考以下文章

Notification的基本用法以及使用RemoteView实现自定义布局

Notification的基本用法以及使用RemoteView实现自定义布局

Notification通知代码简洁使用

Apple Push Notification Service - 更改通知消息的标题

IOS开发之delegate和Notification的区别

Android PushSharp Notification 消息修剪