NSNotificationCenter消息通信(KVO)

笑着哭i 提交于 2020-03-30 03:32:39

NSNotificationCenter是程序不同类间的消息通信.

注册消息通知:

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

addObserver: 注册通知

selector: 收到通知后调用何种方法;

name: 通知的名字(唯一标示)。

发送消息通知:

 [[NSNotificationCenter defaultCenter] postNotificationName:@"mthMsg" object:obj];
  postNotificationName:消息的名称  
//键盘注册通知1 //键盘升起 
2 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
3 //键盘降下
4 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!