中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何實現輸入框跟隨鍵盤自動上移

發布時間:2021-06-30 13:04:15 來源:億速云 閱讀:675 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關iOS如何實現輸入框跟隨鍵盤自動上移的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

場景還原

有些時候在包含輸入框的頁面中,點擊輸入框輸入會因鍵盤彈起而遮擋住一部分輸入框,影響用戶體驗。iOS在默認情況下并不會處理這種問題,不過我們可以自己實現鍵盤彈起輸入框自動上移的效果。

iOS如何實現輸入框跟隨鍵盤自動上移

實現思路

觀察鍵盤的彈起與收回,當彈起的鍵盤會遮擋住輸入框時,將輸入框跟隨鍵盤一并上移合適的距離,當鍵盤收回時,輸入框回到原始狀態。

具體方案

1. 注冊兩個觀察者,觀察鍵盤的彈起與收回

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

2. 在上面的keyboardWillShow和keyboardWillHide方法中分別實現輸入框的上移和還原

上移

當彈起的鍵盤遮住了頁面上的輸入框時,我們應該將輸入框移至鍵盤之上,而鍵盤沒有遮到輸入框時,并不需要操作。因此在ios的坐標系下,我們可以分別獲取鍵盤彈起后上端的Y坐標和輸入框下端的Y坐標,通過做差可以判斷出鍵盤是否遮住了輸入框。上移我們可以采用view的transform屬性進行平移變換,而不是直接去操作view的frame,這樣做的好處是當我們要還原view的狀態時可以直接將transform重置為0,而不需要再關心計算下移時的距離。

還原(下移至原始狀態)

根據前面所說,我們只要在恰當的時機操作view的transform屬性就可以實現了。

- (void)keyboardWillShow:(NSNotification *)notification
{
  //獲取處于焦點中的view
  NSArray *textFields = @[phoneNemberText, verifyCodeText];
  UIView *focusView = nil;
  for (UITextField *view in textFields) {
    if ([view isFirstResponder]) {
      focusView = view;
      break;
    }
  }
  if (focusView) {
    //獲取鍵盤彈出的時間
    double duration = [notification.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    //獲取鍵盤上端Y坐標
    CGFloat keyboardY = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue].origin.y;
    //獲取輸入框下端相對于window的Y坐標
    CGRect rect = [focusView convertRect:focusView.bounds toView:[[[UIApplication sharedApplication] delegate] window]];
    CGPoint tmp = rect.origin;
    CGFloat inputBoxY = tmp.y + focusView.frame.size.height;
    //計算二者差值
    CGFloat ty = keyboardY - inputBoxY;
    NSLog(@"position keyboard: %f, inputbox: %f, ty: %f", keyboardY, inputBoxY, ty);
    //差值小于0,做平移變換
    [UIView animateWithDuration:duration animations:^{
      if (ty < 0) {
        self.view.transform = CGAffineTransformMakeTranslation(0, ty);
      }
    }];
  }
}

- (void)keyboardWillHide:(NSNotification *)notification
{
  //獲取鍵盤彈出的時間
  double duration = [notification.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
  //還原
  [UIView animateWithDuration:duration animations:^{
    self.view.transform = CGAffineTransformMakeTranslation(0, 0);
  }];
}

看上去這樣已經完美實現了輸入框隨鍵盤自動上移,我們也可以喝杯茶稍微休息一下了。沒錯,在iOS 8及之后的系統中,確實可以正常的工作,然而如果你的應用需要適配iOS 7并且要支持橫屏,那么上面的方式在iOS7上,并不能按照我們的期望正確移動。

原因:在ios7上,鍵盤的frame,系統是按照豎屏狀態下window坐標系來計算的,并不考慮旋轉的因素,因此在橫屏下得到的鍵盤frame是錯誤的。受此影響的還有橫屏時獲取屏幕寬高[UIScreen mainScreen].bounds,也會有這樣的問題。這種情況我們不僅無法正確得到鍵盤的frame,而且輸入框相對于window的坐標計算結果也是錯誤的。

因此在ios7上,鍵盤上端的Y坐標以及輸入框下端相對于window的Y坐標需要單獨處理。鍵盤上端的Y坐標可以通過屏幕高度減鍵盤高度得到。我們通過下面的方法獲取鍵盤上端的Y坐標。

- (CGFloat)getKeyboardY:(NSDictionary *)userInfo
{
  CGFloat screenHeight;
  CGFloat keyboardY = 0;
  CGFloat keyboardHeight = 0;
  UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
  if (( [[[UIDevice currentDevice] systemVersion] floatValue]<8) && UIInterfaceOrientationIsLandscape(orientation))
  {
    screenHeight = [[UIScreen mainScreen] bounds].size.width;
    keyboardHeight = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue].size.width;
    keyboardY = screenHeight - keyboardHeight;
  }
  else if (( [[[UIDevice currentDevice] systemVersion] floatValue]<8) && UIInterfaceOrientationIsPortrait(orientation)) {
    screenHeight = [[UIScreen mainScreen] bounds].size.height;
    keyboardHeight = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue].size.height;
    keyboardY = screenHeight - keyboardHeight;
  }
  else {
    keyboardY = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue].origin.y;
  }
  return keyboardY;
}

輸入框下端相對于window的坐標如何計算呢?我們首先獲得的其實是基于豎屏狀態下坐標系中的Y值,而我們期望的是橫屏下得到橫屏狀態下坐標系中的Y值,根據兩個坐標系的關系,可以將第一次轉換得到的坐標再做一次轉換,計算得出橫屏坐標系下的Y坐標值。我們通過下面的方法獲取輸入框下端的Y坐標。

- (CGPoint)getViewOriginPointToWindow:(UIView *)view
{
  CGPoint origin;
  if ([[[UIDevice currentDevice] systemVersion] floatValue] < 8) {
    CGPoint focusViewPoint = [view convertPoint:CGPointZero toView:nil];
    UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
    if (orientation == UIInterfaceOrientationLandscapeLeft) {
      origin.y = focusViewPoint.x;
      origin.x = [[[UIApplication sharedApplication] delegate] window].bounds.size.height - focusViewPoint.y;
    }
    else if (orientation == UIInterfaceOrientationLandscapeRight) {
      origin.y = [[[UIApplication sharedApplication] delegate] window].bounds.size.width - focusViewPoint.x;
      origin.x = focusViewPoint.y;
    }
    else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
      origin.y = [[[UIApplication sharedApplication] delegate] window].bounds.size.height - focusViewPoint.y;
      origin.x = [[[UIApplication sharedApplication] delegate] window].bounds.size.width - focusViewPoint.x;
    }
    else {
      origin = focusViewPoint;
    }
  }
  else {
    CGRect rect = [view convertRect:view.bounds toView:[[[UIApplication sharedApplication] delegate] window]];
    origin = rect.origin;
  }
  return origin;
}

因此我們將之前獲取兩個Y坐標的代碼改用下面的方式:

//獲取鍵盤上端Y坐標
CGFloat keyboardY = [self getKeyboardY:notification.userInfo];
//獲取輸入框下端相對于window的Y坐標
CGPoint tmp = [self getViewOriginPointToWindow:focusView];
CGFloat inputBoxY = tmp.y + focusView.frame.size.height;

這樣就完美實現了輸入框隨鍵盤自動上移的效果。

iOS如何實現輸入框跟隨鍵盤自動上移

感謝各位的閱讀!關于“iOS如何實現輸入框跟隨鍵盤自動上移”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

重庆市| 白沙| 泗阳县| 陵川县| 洪泽县| 遵义市| 寻甸| 鄯善县| 永州市| 寿光市| 柘荣县| 沛县| 白朗县| 鄯善县| 涡阳县| 伊金霍洛旗| 新绛县| 通江县| 清徐县| 桑植县| 南昌县| 定远县| 铜梁县| 龙陵县| 中西区| 英吉沙县| 江阴市| 凤山县| 大竹县| 富顺县| 深圳市| 合川市| 连城县| 安义县| 伊春市| 肇州县| 河北区| 凤庆县| 阿城市| 丽江市| 克东县|