//通知传值——添加监听,等待页面二的传值
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notHandle:) name:@"notify" object:nil];
//收到通知后的一个处理,参数1就是通知
- (void)notHandle:(NSNotification*)not{
self.label.text = not.userInfo[@"not"];
}
//发送通知,里面包含了数据
[[NSNotificationCenter defaultCenter] postNotificationName:@"notify" object:nil userInfo:@{@"not":@"我是通知数据"}];