键盘大小改变的消息

来源:互联网 发布:淘宝异地发货违规吗 编辑:程序博客网 时间:2024/05/22 15:30
在你的程序中加入监听[[NSNotificationCenter defaultCenter] addObserver:self 
                                             selector:@selector(keyboardWillShow:) 
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];
切换输入法的时候会调用keyboardWillShow方法,用下面的方法就能取得输入键盘的高度(仔细看看API):
- (void)keyboardWillShow:(id)sender {
    CGRect keyboardFrame;
    [[[((NSNotification *)sender) userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&keyboardFrame];
    keyboardHeight = CGRectGetHeight(keyboardFrame);
原创粉丝点击