如何检查 iPhone 上的视图是否位于键盘后面

发布于 2024-11-16 18:25:44 字数 186 浏览 0 评论 0原文

在我的应用程序中,我有一堆文本标签和文本视图。有时,文本视图位于键盘下方。我的问题是是否有办法检查文本视图是否位于键盘后面以将其向上移动。我已经知道如何向上移动视图,并且我知道 KeyboardWillAppear 通知,但我不知道如何检查视图是否位于键盘后面。问题是,如果文本视图不在键盘下方,我不想移动它。如何才能做到这一点?

提前致谢。

in my application i have a bunch of textlabels and textviews. Sometimes the textview is underneath the keyboard. My question is if there's a way to check if a textview is behind the keyboard to move it up. I already know how to move views up, and i know about the keyboardWillAppear notifications, but i don't know how to check if the view is behind the keyboard. The thing is that i don't want to move the textview if it's not underneath the kayboard. How can achieve that?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无边思念无边月 2024-11-23 18:25:44

我将如上所示检查第一响应者

[text isFirstResponder];

,然后检查文本字段的边界是否小于 215(因为我认为这是键盘的最大高度)并从那里进行调整。所以总的来说,它看起来像:

if([text isFirstResponder]){
    if(text.bounds.y > 215){
       text.bounds.y = CGPointMake(text.bounds.y-(text.bounds.y-215));
    }
}

I would do the check for first responder as shown above

[text isFirstResponder];

then I'd check to see if the bounds of the text field's bounds are less than 215 (because i think that's the max height of the keyboard) and accommodate from there. so all together it looks like:

if([text isFirstResponder]){
    if(text.bounds.y > 215){
       text.bounds.y = CGPointMake(text.bounds.y-(text.bounds.y-215));
    }
}
独﹏钓一江月 2024-11-23 18:25:44

我认为看到这一点的唯一方法是验证每个 UITextField 和 UITextView 如果它返回 YES

[_text isFirstResponder];

如果任何 UITextField 或 UITextView 是第一响应者,则意味着键盘位于屏幕底部。

通过监听 UITextFieldDelegate 和 UITextViewDelegate ShouldBeginEditing 事件,您可以看到键盘将会出现:
对于 UITextField 来说是:

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;// return NO to disallow editing.

对于 UITextView 来说是:

- (BOOL)textViewShouldBeginEditing:(UITextView *)textView;

希望有帮助。

I think the only way to see this is to verify each UITextField and UITextView if it returns YES for

[_text isFirstResponder];

If any UITextField or UITextView is First Responder, than it means that the keyboard is on the bottom of the screen.

You can see the keyboard will appear by listening to UITextFieldDelegate and UITextViewDelegate ShouldBeginEditing events:
for UITextField it is:

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;// return NO to disallow editing.

and for UITextView it is:

- (BOOL)textViewShouldBeginEditing:(UITextView *)textView;

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文