美文网首页
【NSNotificationCenter】使用

【NSNotificationCenter】使用

作者: Dorom_81d0 | 来源:发表于2017-04-06 17:02 被阅读0次

    发送:[[NSNotificationCenter defaultCenter] postNotificationName:@"detectPwd" object:self userInfo:@{@"msg":dict}];

    接收:[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(recerveAcquareCodeObserver:) name:@"detectPwd" object:nil];

    -(void)recerveAcquareCodeObserver:(NSNotification *)sender{

    NSDictionary * dic = sender.userInfo;}

    移除:[[NSNotificationCenter defaultCenter] removeObserver:self name:@"detectPwd" object:nil];

    }

    相关文章

      网友评论

          本文标题:【NSNotificationCenter】使用

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