通知传值

传值B页面:

[NSNotificationCenter defaultCenter] postNotificationName:@"cityName" object:self userInfo:dict];

接收A页面:

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

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

    NSDictionary *nameDictionAry = [notification userInfo];

    [backButton setTitle:[nameDictionAry objectForKey:@"State"] forState:UIControlStateNormal];

}

posted @ 2015-10-21 16:51  超越昨天  阅读(131)  评论(0编辑  收藏  举报