学习笔记-通知

作者: 听雨花春风 | 来源:发表于2016-04-30 16:33 被阅读11次
关于通知

1.消息源

  • 创建通知
    NSNotification *notifiction = [NSNotification notificationWithName:@"tongzhi" object:nil userInfo:dic];
    
  • 发出消息
     [[NSNotificationCenter defaultCenter]postNotification:notifiction];
    

2.消息接收者

  • 添加观察者

    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(tongzhi:) name:@"tongzhi" object:nil];
    
  • 实现通知

    -(void)tongzhi:(NSNotification *)notification{  
    }
    

相关文章

网友评论

    本文标题:学习笔记-通知

    本文链接:https://www.haomeiwen.com/subject/xjykrttx.html