当前位置:  开发笔记 > 编程语言 > 正文

UIKeyboardWillShowNotification为快速键盘返回错误的帧

如何解决《UIKeyboardWillShowNotification为快速键盘返回错误的帧》经验,为你挑选了0个好方法。

我正在使用UIKeyboardWillShowNotificationUIKeyboardWillHideNotification处理键盘.
这是键盘显示时调用的函数:

-(void) keyboardWillShow:(NSNotification *)note
{
    CGRect keyboardBounds;
    //[[note.userInfo valueForKey:UIKeyboardFrameEndUserInfoKey] getValue: &keyboardBounds];
    NSValue* keyboardFrameBegin = [note.userInfo valueForKey:UIKeyboardFrameEndUserInfoKey];
    keyboardBounds = [keyboardFrameBegin CGRectValue];  
}  

我得到keyboardBounds =(0,524,320,44),我使用的是5s.不知道为什么origin.y来了524(应该在300附近)和身高44!我也试过评论说.键盘绑定的两种方式都是44.此问题仅适用于快速键盘.
此问题相同

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有