iOS通知传值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS通知传值相关的知识,希望对你有一定的参考价值。
NSMutableDictionary *params = [NSMutableDictionary dictionary];
params[@"loginName"] = @"abc";
params[@"password"] = @"123456";
//创建通知 NSNotification *notification =[NSNotification notificationWithName:@"tongzhi" object:nil userInfo:params]; //通过通知中心发送通知 [[NSNotificationCenter defaultCenter] postNotification:notification];
//注册通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tongzhi:) name:@"tongzhi" object:nil]; - (void)tongzhi:(NSNotification *)text{ NSLog(@"%@",text.userInfo[@"mobile"]); NSLog(@"-----接收到通知------"); }
以上是关于iOS通知传值的主要内容,如果未能解决你的问题,请参考以下文章
iOS--页面间的代理传值(属性代理(委托)代码块单例通知)