gpt4 book ai didi

ios - handleKeyboardWillShow 通知处理

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

我在 View Controller 中有一个 Tableview。我添加了以下代码来获取键盘通知

[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleKeyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleKeyboardWillHide:)
name:UIKeyboardWillHideNotification
object:nil];

在键盘显示上,我将表格滚动到底部。

- (void)handleKeyboardWillShow:(NSNotification *)notification
{

[self scrollToBottomAnimated:YES];
}

但是我的 View Controller 中也有一个 TextView 。因此,当我单击 textview 时,也会调用 handleKeyboardWillShow 方法,导致不必要地滚动我的 tableview,如果单击 textview 我不需要它。

谁能帮我弄清楚如何检测从哪个发件人调用了 handleKeyboardWillShow。

谢谢

最佳答案

您可以通过检查谁是第一响应者来做到这一点。

- (void)handleKeyboardWillShow:(NSNotification *)notification
{
if ([textFieldForScrolling isFirstResponder]) {
[self scrollToBottomAnimated:YES];
} else {
NSLog(@"Is a different text input");
}
}

如果您需要更多解释,请告诉我。

关于ios - handleKeyboardWillShow 通知处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27507365/

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