微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

UIKeyboardWillShowNotification与ios 11 beta 7有关

在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,但到目前为止我找不到它的任何引用.

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

解决方法

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐