iOS 擷取鍵盤高度

來源:互聯網
上載者:User

標籤:

- (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

{

    //擷取鍵盤的高度

    /*

     iphone 6:

     中文

     2014-12-31 11:16:23.643 Demo[686:41289] 鍵盤高度是  258

     2014-12-31 11:16:23.644 Demo[686:41289] 鍵盤寬度是  375

     英文

     2014-12-31 11:55:21.417 Demo[1102:58972] 鍵盤高度是  216

     2014-12-31 11:55:21.417 Demo[1102:58972] 鍵盤寬度是  375

     

     iphone  6 plus:

     英文:

     2014-12-31 11:31:14.669 Demo[928:50593] 鍵盤高度是  226

     2014-12-31 11:31:14.669 Demo[928:50593] 鍵盤寬度是  414

     中文:

     2015-01-07 09:22:49.438 Demo[622:14908] 鍵盤高度是  271

     2015-01-07 09:22:49.439 Demo[622:14908] 鍵盤寬度是  414

     

     iphone 5 :

     2014-12-31 11:19:36.452 Demo[755:43233] 鍵盤高度是  216

     2014-12-31 11:19:36.452 Demo[755:43233] 鍵盤寬度是  320

     

     ipad Air:

     2014-12-31 11:28:32.178 Demo[851:48085] 鍵盤高度是  264

     2014-12-31 11:28:32.178 Demo[851:48085] 鍵盤寬度是  768

     

     ipad2 :

     2014-12-31 11:33:57.258 Demo[1014:53043] 鍵盤高度是  264

     2014-12-31 11:33:57.258 Demo[1014:53043] 鍵盤寬度是  768

     */

    NSDictionary *userInfo = [aNotification userInfo];

    NSValue *aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];

    CGRect keyboardRect = [aValue CGRectValue];

    int height = keyboardRect.size.height;

    int width = keyboardRect.size.width;

    NSLog(@"鍵盤高度是  %d",height);

    NSLog(@"鍵盤寬度是  %d",width); 

}

 

//當鍵退出時調用

- (void)keyboardWillHide:(NSNotification *)aNotification

{

}

 

iOS 擷取鍵盤高度

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.