码迷,mamicode.com
首页 > 移动开发 > 详细

iOS获取键盘的高度(简洁有效)

时间:2015-09-17 19:15:59      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

iOS获取键盘的高度

(2013-03-06 17:45:31)
  1. - (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];

        int height = keyboardRect.size.height;

    }

     

    //当键退出时调用

    - (void)keyboardWillHide:(NSNotification *)aNotification

    {

        

    }

     

iOS获取键盘的高度(简洁有效)

标签:

原文地址:http://www.cnblogs.com/transcendent/p/4816847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!