码迷,mamicode.com
首页 > 移动开发 > 详细

ios 广播传值

时间:2018-03-10 21:59:50      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:广播   pos   nss   nil   ios   string   not   obs   ber   

[[NSNotificationCenter defaultCenter] postNotificationName:@"callOutWithChatter" object:@{@"chatter":self.chatter, @"type":[NSNumber numberWithInt:eCallSessionTypeVideo],@"isOrderChater":isOrderChatter}];?//广播端传递三个参数

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callOutWithChatter:) name:@"callOutWithChatter" object:nil];//广播中心接受

- (void)callOutWithChatter:(NSNotification *)notification

{   

id object = notification.object;  

NSString *chatter = [object objectForKey:@"chatter"];

}//接受到以后,在事件里面处理接收到参数,

ios 广播传值

标签:广播   pos   nss   nil   ios   string   not   obs   ber   

原文地址:https://www.cnblogs.com/linusflow/p/8541772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!