zoukankan      html  css  js  c++  java
  • ios如何实现被键盘遮挡时,带有textfield的tableview自动上移

    最正规的办法,用通知
    step 1:
    在进入视图的时候添加监视:(viewDidLoad什么的)

     
    复制代码
    1. // Observe keyboard hide and show notifications to resize the text view appropriately.
    2.     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
    3.     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];



    step 2:
    在键盘动作的时候移动视图:

     
    复制代码
    1. - (void)keyboardWillShow:(NSNotification *)notification {
    2.    
    3.     /*
    4.      Reduce the size of the text view so that it's not obscured by the keyboard.
    5.      Animate the resize so that it's in sync with the appearance of the keyboard.
    6.      */
    7.     NSDictionary *userInfo = [notification userInfo];
    8.    
    9.     // Get the origin of the keyboard when it's displayed.
    10.     NSValue* aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
    11.     // Get the top of the keyboard as the y coordinate of its origin in self's view's coordinate system. The bottom of the text view's frame should align with the top of the keyboard's final position.
    12.     CGRect keyboardRect = [aValue CGRectValue];
    13.     keyboardRect = [self.view convertRect:keyboardRect fromView:nil];
    14.    
    15.     CGFloat keyboardTop = keyboardRect.origin.y;
    16.     CGRect newTextViewFrame = self.view.bounds;
    17.     newTextViewFrame.size.height = keyboardTop - self.view.bounds.origin.y;
    18.    
    19.     // Get the duration of the animation.
    20.     NSValue *animationDurationValue = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];
    21.     NSTimeInterval animationDuration;
    22.     [animationDurationValue getValue:&animationDuration];
    23.    
    24.     // Animate the resize of the text view's frame in sync with the keyboard's appearance.
    25.     [UIView beginAnimations:nil context:NULL];
    26.     [UIView setAnimationDuration:animationDuration];
    27.    
    28.     textView.frame = newTextViewFrame;
    29.     [UIView commitAnimations];
    30. }
    31. - (void)keyboardWillHide:(NSNotification *)notification {
    32.    
    33.     NSDictionary* userInfo = [notification userInfo];
    34.    
    35.     /*
    36.      Restore the size of the text view (fill self's view).
    37.      Animate the resize so that it's in sync with the disappearance of the keyboard.
    38.      */
    39.     NSValue *animationDurationValue = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];
    40.     NSTimeInterval animationDuration;
    41.     [animationDurationValue getValue:&animationDuration];
    42.    
    43.     [UIView beginAnimations:nil context:NULL];
    44.     [UIView setAnimationDuration:animationDuration];
    45.    
    46.     textView.frame = self.view.bounds;
    47.    
    48.     [UIView commitAnimations];
    49. }



    step 3:
    在退出视图的时候注销通知
    viewDidUnload:

     
    复制代码
    1. [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    2.     [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];


    dealloc:

     
    复制代码
    1. [[NSNotificationCenter defaultCenter] removeObserver:self name:nil object:nil];




    这些代码是摘自apple sample code KeyboardAccessory.
    些许细节自己修改下就好了,比如那个textView

  • 相关阅读:
    CF799B T-shirt buying
    luogu3469 [POI2008]BLO_Blockade
    luogu2746 校园网
    USACO 2.2 Party Lamps 【高能等效+规律枚举】
    USACO 2.2 Subset Sums 【经典的方案DP+必要的转化】
    USACO 2.2 Preface Numbering 【实质是分治思想】
    bzoj 1051: [HAOI2006]受欢迎的牛 (Tarjan 缩点)
    bzoj 1088: [SCOI2005]扫雷Mine
    bzoj 2761: [JLOI2011]不重复数字 (map||Treap)
    bzoj 1230: [Usaco2008 Nov]lites 开关灯
  • 原文地址:https://www.cnblogs.com/bmate/p/3193209.html
Copyright © 2011-2022 走看看