监听键盘frame变化

Posted HJiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了监听键盘frame变化相关的知识,希望对你有一定的参考价值。

/**
 * 监听键盘的弹出和隐藏
 */
- (void)keyboardWillChangeFrame:(NSNotification *)note
{
    // 键盘最终的frame
    CGRect keyboardF = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
    
    // 动画时间
    CGFloat duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    
    [UIView animateWithDuration:duration animations:^{
        self.toolBar.transform = CGAffineTransformMakeTranslation(0,  keyboardF.origin.y - kScreenHeight);
    }];
}

- (void)setupTextWordToolBar{
    SinceToolBar *toolbar = [SinceToolBar toolBar];
    toolbar.backgroundColor = [UIColor redColor];
    toolbar.width = self.view.width;
    toolbar.height = 44;
    toolbar.y = self.view.height - toolbar.height;
    [self.view addSubview:toolbar];
    self.toolBar = toolbar;
    
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];
}

 

以上是关于监听键盘frame变化的主要内容,如果未能解决你的问题,请参考以下文章

Android监听键盘弹出收起

Android监听键盘弹出收起

vue.js之过滤器,自定义指令,自定义键盘信息以及监听数据变化

IOS 监听键盘的通知

vue教程2-08 自定义键盘信息监听数据变化vm.$watch

上机题目(初级)- 键盘控制小球(Java)