gpt4 book ai didi

ios - 通过 keyboardFrameWillChange 显示键盘会导致表格数据滚出 View

转载 作者:行者123 更新时间:2023-11-29 02:02:54 25 4
gpt4 key购买 nike

努力了大约 3 天来实现可滚动键盘的工作。这是我所拥有的:

具有以下层次结构的 UIViewController:

enter image description here

上图显示我有一个消息传递样式 UITableView +“可停靠”UIView,带有 TextView 和嵌入在 View->ScrollView->ContentView 中的发送按钮。

在 View 中将出现:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardFrameDidChange:) name:UIKeyboardWillChangeFrameNotification object:nil];

并且实现了keyboardFrameWillChange:

- (void)keyboardFrameWillChange:(NSNotification *)notification
{
CGRect endFrame = [[notification.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
NSTimeInterval duration = [[notification.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
UIViewAnimationCurve curve = [[notification.userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] unsignedIntegerValue];
UIViewAnimationOptions options = (curve << 16) | UIViewAnimationOptionBeginFromCurrentState;

CGRect newFrame = self.view.frame;
newFrame.origin.y = endFrame.origin.y - newFrame.size.height;

[UIView animateWithDuration:duration delay:0 options:options animations:^{
self.view.frame = newFrame;
} completion:nil];
}

这让我通过使用 keyboardFrameWillChange 几乎完全可以显示和隐藏键盘。这包括在 Storyboard上设置键盘拖动消除。

但我有一个问题:整个 View (无论是什么 View )都在移动,所以如果 TableView 中只有几个项目,我的代码会 ScrollView 的顶部,这样一来我再也看不到他们了。

我已经尝试调整 tableview 的大小,因为我相信正在发生的事情是 ScrollView 正在滚动完整大小的 tableview,而不是调整 tableview 的大小。我有一种强烈的感觉,我的观点被混淆了,但我为解决这个问题所做的努力是徒劳的。

仅供引用,没有自动布局问题,所有内容都附加到正确的 View 等(即 UIView 停靠在 tableview 下方和父 ScrollView 的底部。

如何解决这个问题?

最佳答案

一些可能有帮助的建议:

不要同时更改framecontentInset;只改变一个应该就足够了,而且更容易管理。我建议只更改 contentInset

UIKeyboardWillChangeFrameNotificationUIKeyboardDidChangeFrameNotification 之一应该告诉您所需的一切;您可以用一种方法处理键盘。当键盘隐藏时,框架将离开屏幕。

当您撤消对 contentInset 的更改时,将此属性恢复到您找到它时的状态。 UIViewControllerautomatically adjust scroll view insets避免状态栏、导航栏和工具栏或标签栏。这可能是您遇到第一个问题的原因。

我知道图书馆是垃圾,但你可能想看看我的 DHAvoidKeyboardBehaviour 。至少只有 34 行垃圾。


另外:您正在注册 UIKeyboardWillChangeFrameNotification,但您的方法名为 keyboardFrameDidChange:。对 willdid 之间的区别马虎,总有一天会咬你一口。

关于ios - 通过 keyboardFrameWillChange 显示键盘会导致表格数据滚出 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30133365/

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