iOS键盘弹出 视图向上滚动键盘高度

1.先添加对键盘的监听

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

当系统消息出现UIKeyboardWillShowNotification和UIKeyboardWillHideNotification消息就会调用我们的keyboardWillShow和keyboardWillHide方法。

2.实现监听方法

#pragma mark ---- 根据键盘高度将当前视图向上滚动同样高度
///键盘显示事件
- (void)keyboardWillShow:(NSNotification *)notification {
    //获取键盘高度,在不同设备上,以及中英文下是不同的
    CGFloat kbHeight = [[notification.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size.height;
    
    //计算出键盘顶端到inputTextView panel底端的距离(加上自定义的缓冲距离INTERVAL_KEYBOARD)
    CGFloat offset = kbHeight;
    
    // 取得键盘的动画时间,这样可以在视图上移的时候更连贯
    double duration = [[notification.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    
    //将视图上移计算好的偏移
    if(offset > 0) {
        [UIView animateWithDuration:duration animations:^{
            self.view.frame = CGRectMake(0.0f, -offset, self.view.frame.size.width, self.view.frame.size.height);
        }];
    }
}
#pragma mark ---- 当键盘消失后,视图需要恢复原状
///键盘消失事件
- (void)keyboardWillHide:(NSNotification *)notify {
    // 键盘动画时间
    double duration = [[notify.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    //视图下沉恢复原状
    [UIView animateWithDuration:duration animations:^{
        self.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
    }];
}

3.注销通知

-(void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

4.然后在这里安利一个很好的第三方 IQKeyboardManager 特别好用
有需要的可以直接去下载 https://github.com/hackiftekhar/IQKeyboardManager

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 这篇文章会对 IQKeyboardManager 自动解决键盘遮挡问题的方法进行分析。 最近在项目中使用了 IQK...
    MissLu16阅读 2,550评论 0 4
  • 来源:Draveness (https://github.com/Draveness) 链接:http://www...
    默默_David阅读 706评论 0 1
  • 那些我曾经想到过有你参与的未来,都已成为遥远的梦。 S小姐认识T先生,是在大一上学期,快结束的时候。 在此之前,S...
    欢颜ling阅读 422评论 0 0
  • 第一信念:‌“天道酬勤”用勤奋赢得尊重;赢得成功 ‌第二信念:“地道酬善”,上善若水,心怀敬畏,不需锋芒毕露 ‌第...
    游帅来也阅读 220评论 0 0
  • 厚重的城墙终究抵不过岁月,一场场冷雨洗刷,昔日的血墙如今斑驳不矣,青色给人一种古朴的感觉,不过,墙角的芬芳显得...
    地泉阅读 274评论 0 0