iOS输入框被键盘挡住的解决方法

iOS开发中,经常会遇到输入框被键盘挡住的情况,通过查阅资料和自己的思考,想出来下面这个方法:
基本思路:

  1. 在点击UITextField时,会自动调用 textFieldShouldBeginEditing 方法,在该方法中获取光标高度;
  2. 利用通知中心监听 UIKeyboardWillShowNotification ,在监听方法中可以获取到键盘高度,将键盘高度与光标高度相比较:如果键盘高度大于光标高度,则调整self.view的frame,使UITextField可以显示出来,将差值保存下来;如果小于,不做操作.
  3. 利用通知中心监听 name:UIKeyboardWillHideNotification ,在监听方法中判断差值是否大于0:如果大于,说明已经调整过self.view的frame,现在需要调整回来;如果小于,不做操作.

这就是实现的基本思路,在此基础上,就可以现在了.基础比较好的可以自己去研究了.如果嫌麻烦,可以接着看.我接着写具体实现过程.
我做了一个Demo,其中包含3个UITextField,自上而下:tfAccount,tfPassword,tfEmail.
第一步: 实现代理

  1. 实现代理: _tfPassword.delegate = self;
  2. 遵守协议: UITextFieldDelegate
  3. 实现方法: - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{}

第二步: 获取点击的UITextField距底部的高度

#pragma mark- UITextFieldDelegate
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
    if ([textField isEqual:self.tfAccount]) {
        _cursorHeight = self.view.frame.size.height - CGRectGetMaxY(textField.frame);
    }else if ([textField isEqual:self.tfPassword]) {
        _cursorHeight = self.view.frame.size.height - CGRectGetMaxY(textField.frame);
    }else if ([textField isEqual:self.tfEmail]) {
        _cursorHeight = self.view.frame.size.height - CGRectGetMaxY(textField.frame);
    }
    return YES;
}

其中,在类的延展中声明_cursorHeight: float _cursorHeight; 这是光标距底部的高度.

第三步:通知,监听

- (void)viewDidLoad {
    [super viewDidLoad];

    //增加监听,当键盘出现或改变时收出消息
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShow:)
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];
    //增加监听,当键退出时收出消息
    [[NSNotificationCenter defaultCenter] addObserver:self
                                              selector:@selector(keyboardWillHide:)
                                                 name:UIKeyboardWillHideNotification
                                               object:nil];
}

//当键盘出现或改变时调用
- (void)keyboardWillShow:(NSNotification *)aNotification {
    //获取键盘的高度
    NSDictionary *userInfo = [aNotification userInfo];
    NSValue *aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
    CGRect keyboardRect = [aValue CGRectValue];
    float keyboardHeight = keyboardRect.size.height;
    _spacingWithKeyboardAndCursor = keyboardHeight - _cursorHeight;
    if (_spacingWithKeyboardAndCursor > 0) {
        [UIView animateWithDuration:kAnimationDuration animations:^{
            //将视图的Y坐标向上移动offset个单位,以使下面腾出地方用于软键盘的显示
            self.view.frame = CGRectMake(0.0f, -(_spacingWithKeyboardAndCursor + 5.0f), self.view.frame.size.width, self.view.frame.size.height);
        }];
    }
}
//当键退出时调用
- (void)keyboardWillHide:(NSNotification *)aNotification {
    if (_spacingWithKeyboardAndCursor > 0) {
        [UIView animateWithDuration:kAnimationDuration animations:^{
            //将视图的Y坐标向上移动offset个单位,以使下面腾出地方用于软键盘的显示
            self.view.frame = CGRectMake(0.0f, 0.0f, self.view.frame.size.width, self.view.frame.size.height);
        }];
    }
}

其中,在类的延展中声明_spacingWithKeyboardAndCursor: float _spacingWithKeyboardAndCursor; 这是光标与键盘之间的间隔.

至此,一个最简单的Demo完成了.为了便于理解,除了必要的代码,其他任何有利于完善的代码都没有添加.

呈上代码:
(注:这是ViewController.m中的代码,其他页面没有添加任何代码,大家可以直接新建一个项目,将代码拷过去,进行测试)

//
//  ViewController.m
//  ChangeKeyboardHeightDemo
//
//  Created by Suzhenyu on 16/3/16.
//  Copyright © 2016年 apple. All rights reserved.
//

#import "ViewController.h"

static const CGFloat kSpacing = 8.0f;                       //间隔
static const NSTimeInterval kAnimationDuration = 1.0f;      //动画时间

@interface ViewController ()<UITextFieldDelegate>
{
    float _cursorHeight;                                    //光标距底部的高度
    float _spacingWithKeyboardAndCursor;                    //光标与键盘之间的间隔
}

@property (nonatomic, strong) UITextField *tfAccount;
@property (nonatomic, strong) UITextField *tfPassword;
@property (nonatomic, strong) UITextField *tfEmail;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    self.view.backgroundColor = [UIColor darkGrayColor];

    [self.view addSubview:self.tfAccount];
    [self.view addSubview:self.tfPassword];
    [self.view addSubview:self.tfEmail];

    //增加监听,当键盘出现或改变时收出消息
    [[NSNotificationCenter defaultCenter] addObserver:self
                                              selector:@selector(keyboardWillShow:)
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];
    //增加监听,当键退出时收出消息
    [[NSNotificationCenter defaultCenter] addObserver:self
                                            selector:@selector(keyboardWillHide:)
                                                name:UIKeyboardWillHideNotification
                                              object:nil];
}

//当键盘出现或改变时调用
- (void)keyboardWillShow:(NSNotification *)aNotification {
    //获取键盘的高度
    NSDictionary *userInfo = [aNotification userInfo];
    NSValue *aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
    CGRect keyboardRect = [aValue CGRectValue];
    float keyboardHeight = keyboardRect.size.height;
    _spacingWithKeyboardAndCursor = keyboardHeight - _cursorHeight;
    if (_spacingWithKeyboardAndCursor > 0) {
        [UIView animateWithDuration:kAnimationDuration animations:^{
            //将视图的Y坐标向上移动offset个单位,以使下面腾出地方用于软键盘的显示
            self.view.frame = CGRectMake(0.0f, -(_spacingWithKeyboardAndCursor), self.view.frame.size.width, self.view.frame.size.height);
        }];
    }
}
//当键退出时调用
- (void)keyboardWillHide:(NSNotification *)aNotification {
    if (_spacingWithKeyboardAndCursor > 0) {
        [UIView animateWithDuration:kAnimationDuration animations:^{
            //将视图的Y坐标向上移动offset个单位,以使下面腾出地方用于软键盘的显示
            self.view.frame = CGRectMake(0.0f, 0.0f, self.view.frame.size.width, self.view.frame.size.height);
        }];
    }
}

#pragma mark- 懒加载
-(UITextField *)tfAccount {
    if (!_tfAccount) {
        _tfAccount = [[UITextField alloc] initWithFrame:CGRectMake(kSpacing, self.view.frame.size.height - 180, self.view.frame.size.width - kSpacing * 2.0, 30)];
        _tfAccount.backgroundColor = [UIColor whiteColor];
        _tfAccount.placeholder = @"请输入账号";
        _tfAccount.delegate = self;
    }

    return _tfAccount;
}

-(UITextField *)tfPassword {
    if (!_tfPassword) {
        _tfPassword = [[UITextField alloc] initWithFrame:CGRectMake(kSpacing, self.view.frame.size.height - 120, self.view.frame.size.width - kSpacing * 2.0, 30)];
        _tfPassword.backgroundColor = [UIColor whiteColor];
        _tfPassword.placeholder = @"请输入密码";
        _tfPassword.delegate = self;
    }

    return _tfPassword;
}

-(UITextField *)tfEmail {
    if (!_tfEmail) {
        _tfEmail = [[UITextField alloc] initWithFrame:CGRectMake(kSpacing, self.view.frame.size.height - 60, self.view.frame.size.width - kSpacing * 2.0, 30)];
        _tfEmail.backgroundColor = [UIColor whiteColor];
        _tfEmail.placeholder = @"请输入邮箱";
        _tfEmail.delegate = self;
    }

    return _tfEmail;
}

#pragma mark- UITextFieldDelegate
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
    if ([textField isEqual:self.tfAccount]) {
        _cursorHeight = self.view.frame.size.height - CGRectGetMaxY(textField.frame);
    }else if ([textField isEqual:self.tfPassword]) {
        _cursorHeight = self.view.frame.size.height - CGRectGetMaxY(textField.frame);
    }else if ([textField isEqual:self.tfEmail]) {
        _cursorHeight = self.view.frame.size.height - CGRectGetMaxY(textField.frame);
    }

    return YES;
}


@end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容