gpt4 book ai didi

ios - ios 11 beta 7 的 UIKeyboardWillShowNotification 问题

转载 作者:可可西里 更新时间:2023-11-01 03:38:01 26 4
gpt4 key购买 nike

在 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 测试版错误,但到目前为止我找不到任何相关信息。

很高兴知道是否有其他人遇到此问题。

最佳答案

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

关于ios - ios 11 beta 7 的 UIKeyboardWillShowNotification 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45920967/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com