美文网首页
NSNotificationCenter通知,userInfo传

NSNotificationCenter通知,userInfo传

作者: jadn | 来源:发表于2016-09-06 11:16 被阅读251次

    1、发通知

    NSDictionary *myDictionary = [NSDictionary dictionaryWithObject:@"sendValue" forKey:@"sendKey"];

    [[NSNotificationCenter defaultCenter] postNotificationName:@"myNotice" object:nil userInfo:myDictionary];

    2、接受通知

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

    3、调用方法,接受信息。

    - (void)noticeMethod:(NSNotification *)notification

    {

    NSString *getsendValue = [[notification userInfo] valueForKey:@"sendKey"];

    }

    相关文章

      网友评论

          本文标题:NSNotificationCenter通知,userInfo传

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