通知传值

一、在接收值的一方创建通知    
//注册通知,添加观察者
    /*
     1、 Observer 表示观察者
     2、 selector 表示观察者收到通知后执行的方法
     3、 name 表示通知的名字
     4、 object 表示确定发送通知的类 nil表示接受所有的通知。
     */
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:SendNotificationName object:nil];
  
//收到通知执行的方法。
- (void)handleNotification:(NSNotification *)notification{
    //赋值
    self.backLabel.text = [notification.userInfo objectForKey:@"string"];
}
二、在传值的一方发送通知
 [[NSNotificationCenter defaultCenter] postNotificationName:SendNotificationName object:nil userInfo:@{@"string":self.sendTextFiled.text}];
注意:必须要先创建通知并添加观察者后,发送通知才有效,通知使用完以后需要移除  (重写dealloc方法)

你可能感兴趣的:(通知传值)