iOS點擊輸入框時自動移動到鍵盤之上

1. 概述

本文要實現(xiàn)的是在iOS上點擊輸入框后盒粮,如果輸入框在鍵盤之下堰酿,那么將自動移動界面使得輸入框在鍵盤之上!就像Android的效果那樣载萌。效果圖如下:

show.gif
show.gif

2. 一分鐘實現(xiàn)該效果:

  1. 點擊這里下載 WPAutoSpringTextViewController.h, WPAutoSpringTextViewController.m, UIResponder+FirstResponder.h, UIResponder+FirstResponder.m四個文件到你的工程中
  2. 修改你的ViewController的父類為WPAutoSpringTextViewController

大功告成搪哪,是不是很簡單!如果想了解實現(xiàn)方法摊崭,請繼續(xù)閱讀讼油。

3. 實現(xiàn)原理

首先,我們需要監(jiān)聽鍵盤的廣播:

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

鍵盤彈出廣播中我們需要獲取鍵盤彈出的高度呢簸,鍵盤彈出的時間矮台。

float duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue];
CGFloat keyboardHeight = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue].size.height;

然后我們判斷此時view需要移動的距離,這里首先獲取firstResponder根时,然后判斷其是否為UITextView或UITextField類或其子類瘦赫,再根據(jù)該輸入框在屏幕上的位置計算是否需要彈起view,需要則返回需要彈起的高度蛤迎,不需要則為0确虱。

- (CGFloat)shouldScrollWithKeyboardHeight:(CGFloat)keyboardHeight{
    id responder = [UIResponder currentFirstResponder];
    if([responder isKindOfClass:[UITextView class]] || [responder isKindOfClass:[UITextField class]]){
        UIView *view = responder;
        CGFloat y = [responder convertPoint:CGPointZero toView:[UIApplication sharedApplication].keyWindow].y;
        CGFloat bottom = y + view.frame.size.height;
        if(bottom > SCREEN_HEIGHT - keyboardHeight){
            return bottom - (SCREEN_HEIGHT - keyboardHeight);
        }
    }
    return 0;
}

最后當我們發(fā)現(xiàn)需要彈起頁面時則動畫彈起頁面:

CGFloat shouldScrollHeight = [self shouldScrollWithKeyboardHeight:keyboardHeight];
    if(shouldScrollHeight == 0){
        return;
    }
    __weak WPAutoSpringTextViewController *weakSelf = self;
    [UIView animateWithDuration:duration animations:^{
        CGRect bounds = weakSelf.view.bounds;
        weakSelf.view.bounds = CGRectMake(0, shouldScrollHeight + 10, bounds.size.width, bounds.size.height);
    }];

這里主要的邏輯都已經(jīng)完成了,點擊在鍵盤覆蓋范圍內的輸入框時替裆,界面可以自動彈起校辩。當點擊空白區(qū)域時,鍵盤自動收起扎唾,這個功能代碼如下:

self.view.userInteractionEnabled = YES;
[self.view addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(viewClicked)]];
- (void)viewClicked{
    if(keyboardIsShowing){
        id responder = [UIResponder currentFirstResponder];
        if([responder isKindOfClass:[UITextView class]] || [responder isKindOfClass:[UITextField class]]){
            UIView *view = responder;
            [view resignFirstResponder];
        }
    }
}

好了大功告成召川! 完整的代碼如下。Github地址
https://github.com/MRsummer/WPAutoSpringKeyboard

#import "WPAutoSpringTextViewController.h"
#import "UIResponder+FirstResponder.h"

#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height

@implementation WPAutoSpringTextViewController{
    BOOL keyboardIsShowing;
}

-(void)viewDidLoad{
    [super viewDidLoad];
    [self enableEditTextScroll];
    self.view.userInteractionEnabled = YES;
    [self.view addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(viewClicked)]];
}

- (void)viewClicked{
    if(keyboardIsShowing){
        id responder = [UIResponder currentFirstResponder];
        if([responder isKindOfClass:[UITextView class]] || [responder isKindOfClass:[UITextField class]]){
            UIView *view = responder;
            [view resignFirstResponder];
        }
    }
}

- (CGFloat)shouldScrollWithKeyboardHeight:(CGFloat)keyboardHeight{
    id responder = [UIResponder currentFirstResponder];
    if([responder isKindOfClass:[UITextView class]] || [responder isKindOfClass:[UITextField class]]){
        UIView *view = responder;
        CGFloat y = [responder convertPoint:CGPointZero toView:[UIApplication sharedApplication].keyWindow].y;
        CGFloat bottom = y + view.frame.size.height;
        NSLog(@"shouldScrollWithKeyboardHeight -->keyboradHeight %@, keyboradBottom %@, viewY %@, bottom %@", @(keyboardHeight), @(SCREEN_HEIGHT - keyboardHeight), @(y), @(bottom));
        if(bottom > SCREEN_HEIGHT - keyboardHeight){
            return bottom - (SCREEN_HEIGHT - keyboardHeight);
        }
    }
    return 0;
}

- (void)enableEditTextScroll{
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(wpKeyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(wpKeyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(wpKeyboardDidShow) name:UIKeyboardDidShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(wpKeyboardDidHide) name:UIKeyboardDidHideNotification object:nil];
}

- (void)wpKeyboardDidShow{
    keyboardIsShowing = YES;
}

- (void)wpKeyboardDidHide{
    keyboardIsShowing = NO;
}

- (void)wpKeyboardWillHide:(NSNotification *)note {
    float duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue];
    __weak WPAutoSpringTextViewController *weakSelf = self;
    [UIView animateWithDuration:duration animations:^{
        CGRect bounds = weakSelf.view.bounds;
        weakSelf.view.bounds = CGRectMake(0, 0, bounds.size.width, bounds.size.height);
    }];
}

- (void)wpKeyboardWillShow:(NSNotification *)note {
    float duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue];
    CGFloat keyboardHeight = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue].size.height;
    CGFloat shouldScrollHeight = [self shouldScrollWithKeyboardHeight:keyboardHeight];
    if(shouldScrollHeight == 0){
        return;
    }
    __weak WPAutoSpringTextViewController *weakSelf = self;
    [UIView animateWithDuration:duration animations:^{
        CGRect bounds = weakSelf.view.bounds;
        weakSelf.view.bounds = CGRectMake(0, shouldScrollHeight + 10, bounds.size.width, bounds.size.height);
    }];
}

@end
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末胸遇,一起剝皮案震驚了整個濱河市荧呐,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌纸镊,老刑警劉巖倍阐,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異逗威,居然都是意外死亡峰搪,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門凯旭,熙熙樓的掌柜王于貴愁眉苦臉地迎上來概耻,“玉大人使套,你說我怎么就攤上這事【媳” “怎么了侦高?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長厌杜。 經(jīng)常有香客問我奉呛,道長,這世上最難降的妖魔是什么夯尽? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任瞧壮,我火速辦了婚禮,結果婚禮上匙握,老公的妹妹穿的比我還像新娘咆槽。我一直安慰自己,他們只是感情好圈纺,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布罗晕。 她就那樣靜靜地躺著,像睡著了一般赠堵。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上法褥,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天茫叭,我揣著相機與錄音,去河邊找鬼半等。 笑死揍愁,一個胖子當著我的面吹牛,可吹牛的內容都是我干的杀饵。 我是一名探鬼主播莽囤,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼切距!你這毒婦竟也來了朽缎?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤谜悟,失蹤者是張志新(化名)和其女友劉穎话肖,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體葡幸,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡最筒,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了蔚叨。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片床蜘。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡辙培,死狀恐怖,靈堂內的尸體忽然破棺而出邢锯,到底是詐尸還是另有隱情扬蕊,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布弹囚,位于F島的核電站厨相,受9級特大地震影響,放射性物質發(fā)生泄漏鸥鹉。R本人自食惡果不足惜蛮穿,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望毁渗。 院中可真熱鬧践磅,春花似錦、人聲如沸灸异。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽肺樟。三九已至檐春,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間么伯,已是汗流浹背疟暖。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留田柔,地道東北人俐巴。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像硬爆,于是被迫代替她去往敵國和親欣舵。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內容

  • 作者簡介 創(chuàng)微信公眾號郭霖 WeChat ID: guolin_blog 瀟瀟鳳兒的博客地址: http://b...
    木木00閱讀 10,756評論 1 43
  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,528評論 25 707
  • 場景還原 有些時候在包含輸入框的頁面中缀磕,點擊輸入框輸入會因鍵盤彈起而遮擋住一部分輸入框缘圈,影響用戶體驗。iOS在默認...
    還是不夠辣閱讀 9,400評論 2 11
  • 很久沒問自己了 你還記得自己嗎 如果還記得 為何不好好看他一眼 而總是那么忙碌呢 很久沒問自己了 你還在意自己嗎 ...
    一號的祈禱閱讀 234評論 0 1
  • 早上寶寶還在吃飯袜蚕,爸爸刮胡子穿外套准验,準備去上班了,寶寶指著門口的方向對爸爸說廷没,“走吧走吧糊饱。”爸爸開門要走了颠黎,寶寶主...
    利萍閱讀 197評論 0 0