实用小技巧(二十二):键盘遮挡问题

版本记录

版本号 时间
V1.0 2017.08.03

前言

在app中,很多时候都需要在输入框里面输入东西,这个时候键盘弹出,不可避免的就会有遮挡页面的问题,这一篇就讲一下解决键盘遮挡页面的方法。感兴趣的可以看看我写的其他小技巧。
1. 实用小技巧(一):UIScrollView中上下左右滚动方向的判断
2. 实用小技巧(二):屏幕横竖屏的判断和相关逻辑
3.实用小技巧(三):点击手势屏蔽子视图的响应
4.实用小技巧(四):动态的增删标签视图
5.实用小技巧(五):通过相册或者相机更改图标
6.实用小技巧(六):打印ios里所有字体
7. 实用小技巧(七):UITableViewCell自适应行高的计算
8. 实用小技巧(八):数字余额显示的分隔
9.实用小技巧(九):类头条模糊背景的实现
10.实用小技巧(十):晃动手机换后台服务器网络
11.实用小技巧(十一):scrollView及其子类显示的一些异常处理
12.实用小技巧(十二):头像图片缩放以及保存到相册简单功能的实现
13.实用小技巧(十三):一种类酷我音乐盒动画实现
14.实用小技巧(十四):生成跳往applestore指定app的方法
15.实用小技巧(十五):左侧向右滑动返回上一级控制器
16.实用小技巧(十六):获取设备信息
17.实用小技巧(十七):清除缓存目录
18.实用小技巧(十八):取出gif图的每一帧
19.实用小技巧(十九):获取相机和麦克风权限
20.实用小技巧(二十):游客模式的实现
21.实用小技巧(二十一):版本检测的实现

功能要求

在app输入框中,当我们输入东西的时候,就会弹出键盘,有键盘弹出就会有遮挡页面的问题,这一篇我们就讲一下解决键盘遮挡的方法。


功能实现

下面我们就看一下功能的实现,先看代码。

#import "JJKeyBoardVC.h"
#import "Masonry.h"

#define kScreenWidth    [UIScreen mainScreen].bounds.size.width
#define kScreenHeight   [UIScreen mainScreen].bounds.size.height

@interface JJKeyBoardVC ()

@property (nonatomic, strong) UITextField *textField;
@property (nonatomic, strong) UIView *bottomView;

@end

@implementation JJKeyBoardVC

#pragma mark - Override Base Function

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.title = @"键盘遮挡";
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapDidTapped)];
    [self.view addGestureRecognizer:tapGesture];
    
    [self setupUI];
    
    //监听键盘弹出和收回
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidAppear:) name:UIKeyboardWillShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidDisappear:) name:UIKeyboardWillHideNotification object:nil];
}

#pragma mark - Object Private Function

- (void)setupUI
{
    //输入框
    UITextField *textField = [[UITextField alloc] init];
    textField.placeholder = @"清输入内容";
    textField.layer.borderColor = [UIColor blueColor].CGColor;
    textField.layer.borderWidth = 1.0;
    [self.view addSubview:textField];
    self.textField = textField;
    
    [self.textField mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerX.equalTo(self.view);
        make.top.equalTo(self.view).offset(100.0);
        make.width.equalTo(@300);
        make.height.equalTo(@40);
    }];
    
    //底部视图
    UIView *bottomView = [[UIView alloc] init];
    bottomView.backgroundColor = [UIColor purpleColor];
    [self.view addSubview:bottomView];
    self.bottomView = bottomView;
    
    [self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.right.bottom.equalTo(self.view);
        make.height.equalTo(@40);
    }];
}

#pragma mark - Action && Notification

- (void)tapDidTapped
{
    [self.view endEditing:YES];
}

//键盘出现

- (void)keyboardDidAppear:(NSNotification *)noti
{
    //获取键盘的高度
    CGFloat kbHeight = [[noti.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size.height;
    // 取得键盘的动画时间,这样可以在视图上移的时候更连贯
    NSTimeInterval duration = [[noti.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    [UIView animateWithDuration:duration animations:^{
        self.view.frame = CGRectMake(0.0, 0.0, kScreenWidth, kScreenHeight - kbHeight);
    } completion:^(BOOL finished) {
        
    }];
}

//键盘收回

- (void)keyboardDidDisappear:(NSNotification *)noti
{
    NSTimeInterval duration = [[noti.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    [UIView animateWithDuration:duration animations:^{
        self.view.frame = CGRectMake(0.0, 0.0, kScreenWidth, kScreenHeight);
    } completion:^(BOOL finished) {

    }];
}

@end

这个方法就是监听键盘的弹出和隐藏,获取键盘的高度以及时间,相应的改变父视图的frame,从而解决遮挡的问题。


功能效果

下面就看一下功能效果。

实用小技巧(二十二):键盘遮挡问题_第1张图片
效果1
实用小技巧(二十二):键盘遮挡问题_第2张图片
效果2

可见,键盘不再遮挡视图了。

后记

未完,待续~~~~

实用小技巧(二十二):键盘遮挡问题_第3张图片
山水

你可能感兴趣的:(实用小技巧(二十二):键盘遮挡问题)