[IOS开发] NSNotificationCenter消息通信机制

NSNotificationCenter是专门供程序中不同类间的消息通信而设置的.  这个类似于Android中的广播。我们可以收广播 (包括系统发的广播) ,发广播。

当然要点也是一样的,先注册监听某种广播,指定回调方法,不需要是还要移除广播。。下面我们来看具体用法。

1.注册通知

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

  addObserver:指定观察者,即通知接受者

  selector:指定回调方法

  name:通知的名称,也就是通知的标志

  object:发送者。nil代表所有发送者

2.发送通知

[[NSNotificationCenter defaultCenter]postNotificationName:@"notification" object:dict];

postNotificationName:指定通知唯一标志。

object: NSDictionary 附加参数

3取消注册

我们在dealloc里面调用

 [[NSNotificationCenter defaultCenter] removeObserver:self name:@"notification" object:nil]; 就可以取消掉。

4.接受系统的通知

1.Application进入后台的通知

  UIApplication *app = [UIApplication sharedApplication];

    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(onApplicationEnterBack:) name:UIApplicationDidEnterBackgroundNotification object:app];

2.键盘弹起或隐藏

   //键盘升起

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];

    //键盘降下

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil]

more。。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值