ios关于键盘遮挡处理

来源:互联网 发布:淘宝店铺的简介和介绍 编辑:程序博客网 时间:2024/05/16 01:00
在一个app中,基本上都有一些输入项,那么问题就来了,有的输入项在底部,当弹出键盘时可能就会把该输入框遮住,针对这个问题,我们就可以用通知(NSNotificationCenter)解决;

1.首先我们需要注册相应的通知如下:

    //键盘将要显示时通知    [[NSNotificationCenter defaultCenter] addObserver:self                                             selector:@selector(keyboardWillShow:)                                                 name:UIKeyboardWillShowNotification                                                object:nil];    //键盘将要消失时通知    [[NSNotificationCenter defaultCenter] addObserver:self                                             selector:@selector(keyboardWillHide:)                                                 name:UIKeyboardWillHideNotification                                               object:nil];

2.在写相应的通知事件:

//键盘显示事件-(void)keyboardWillShow:(NSNotification *)notification{        //获取键盘高度,在不同设备上,以及中英文下是不同的    CGFloat kbHeight = [[notification.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size.height;        CGFloat ViewBottom = _bottomView.frame.origin.y;        CGFloat offset = ViewBottom - kbHeight;<span style="white-space:pre"></span>//其中_bottomView是底部的一个UIView            // 取得键盘的动画时间,这样可以在视图上移的时候更连贯    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);        }];    }}

//键盘消失事件-(void)keyboardWillHide:(NSNotification *)notification{        // 键盘动画时间    double duration = [[notification.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.记住,在注册了通知,在视图消失的时候要移除通知

    //移除键盘通知    [[NSNotificationCenter defaultCenter] removeObserver:self                                                    name:UIKeyboardWillShowNotification                                                  object:nil];        [[NSNotificationCenter defaultCenter] removeObserver:self                                                    name:UIKeyboardWillHideNotification                                                  object:nil];

4.展示结果如下:

未输入之前:


输入之后:



0 0
原创粉丝点击