iOS 键盘的监听 调整view的位置

Posted 想象力才是你的能力

tags:

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

ios在处理键盘的出现和消失时需要监听UIKeyboardWillChangeFrameNotifications/UIKeyboardDidHideNotifications

- (void)viewDidLoad
{
    [super viewDidLoad];

//添加监听 键盘消失
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDown) name:UIKeyboardDidHideNotification object:nil];

//添加监听 键盘出现
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];
}


- (void)keyboardWillChangeFrame:(NSNotification *)noti{

//取出键盘动画的时间(根据userInfo的key-UIKeyboardAnimationDurationUserInfoKey)

    CGFloat duration = [noti.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue];
    


 //取得键盘最后的frame(根据userInfo的key----UIKeyboardFrameEndUserInfoKey = "NSRect: {{0, 227}, {320, 253}}";)

    CGRect keyboardFrame = [noti.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
  
//处理键盘出现的是页面的变化。。。。。。
}


- (void)keyboardDown
{
    //处理键盘消失是页面的变化 。。。。。。
}

 

以上是关于iOS 键盘的监听 调整view的位置的主要内容,如果未能解决你的问题,请参考以下文章

IOS 监听键盘的通知

通过通知监听键盘的状态来改变View的位置

iOS中调整view层级位置的两个属性

iOS-键盘监听YYKeyboardManager

iOS键盘监听以及获取键盘高度

键盘打开时,带有片段的活动不会调整大小