热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

UIKeyboardWillShowNotification与ios11beta7有关

如何解决《UIKeyboardWillShowNotification与ios11beta7有关》经验,为你挑选了1个好方法。

在iOS 11 beta 7上测试我的应用程序 - 如果我的UIViewController,键盘似乎没有推高内容.

代码看起来像这样(从iOS7开始工作):

- (void)handleNotification:(NSNotification*)notification {
if (notification.name == UIKeyboardWillShowNotification) {
    CGSize keyboardSize = [[[notification userInfo] objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
    nextButtonALBottomDistance.cOnstant= keyboardSize.height + initialPhoneBottomDistance;
    codeBottomViewALBottomDistance.cOnstant= keyboardSize.height + initialCodeBottomDistance;
    double animatiOnDuration= [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    [UIView animateWithDuration:animationDuration animations:^{
        [self.view layoutIfNeeded];
    }];
}
else if (notification.name == UIKeyboardWillHideNotification) {
    nextButtonALBottomDistance.cOnstant= initialPhoneBottomDistance;
    codeBottomViewALBottomDistance.cOnstant= initialCodeBottomDistance;
    double animatiOnDuration= [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    [UIView animateWithDuration:animationDuration animations:^{
        [self.view layoutIfNeeded];
    }];
}

}

有趣的是 - 当我按下主页按钮(最小化应用程序)并重新打开它(没有杀死它)时 - 布局是固定的.

它似乎是一个iOS 11测试版的bug,但到目前为止我找不到它的任何引用.

很高兴知道其他人是否有这个问题.



1> Nirav Kotech..:

使用UIKeyboardFrameEndUserInfoKey,因为该键用于包含CGRect的NSValue对象,该CGRect在屏幕坐标中标识键盘的结束帧.不要使用UIKeyboardFrameBeginUserInfoKey.


推荐阅读
author-avatar
勇_哥6868
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有