键盘KVC通知

来源:互联网 发布:数据录入员在家兼职 编辑:程序博客网 时间:2024/05/21 11:28

1 、键盘落下通知

 [[NSNotificationCenterdefaultCenter]addObserverForName:UIKeyboardWillHideNotificationobject:nilqueue:[NSOperationQueuemainQueue]usingBlock:^(NSNotification *note) {}

1 、键盘开启通知

 [[NSNotificationCenterdefaultCenter]addObserverForName:UIKeyboardWillShowNotificationobject:nilqueue:[NSOperationQueuemainQueue]usingBlock:^(NSNotification *note) {}


删除通知

- (void)dealloc {

    [[NSNotificationCenterdefaultCenter]removeObserver:selfname:UIKeyboardWillHideNotificationobject:nil];

    [[NSNotificationCenterdefaultCenter]removeObserver:selfname:UIKeyboardWillShowNotificationobject:nil];

}



0 0
原创粉丝点击