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

ios 监听系统键盘的出现和消失

时间:2015-05-27 12:24:04      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:ios开发


//注册键盘出现的通知

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWasShown:)

                                                 name:UIKeyboardWillShowNotification object:nil];

    //注册键盘消失的通知

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWillBeHidden:)

                                                 name:UIKeyboardWillHideNotification object:nil];

- (void)keyboardWasShown:(NSNotification*)aNotification

{

    //键盘高度

    CGRect keyBoardFrame = [[[aNotification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];

}


-(void)keyboardWillBeHidden:(NSNotification*)aNotification

{


}

ios 监听系统键盘的出现和消失

标签:ios开发

原文地址:http://blog.csdn.net/wangzhaobin/article/details/46043337

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