美文网首页
通知使用

通知使用

作者: 梁苏珍 | 来源:发表于2017-12-26 13:53 被阅读0次

    创建对象

    NSNotification *notification =[NSNotification notificationWithName:@"touxiang" object:nil userInfo:dic];

        [[NSNotificationCenter defaultCenter] postNotification:notification];

    移除通知

    [[NSNotificationCenter defaultCenter] removeObserver:self];或者

    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"tongzhi" object:nil];

    接受通知

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

    - (void)InfoNotificationAction:(NSNotification *)notification{

     NSLog(@"%@",notification.userInfo);

    }

    相关文章

      网友评论

          本文标题:通知使用

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