gpt4 book ai didi

iPhone 键盘没有显示

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

我的应用程序在登录屏幕上启动。之后我使用下一个代码调用 TabBarViewController

DMMainScreenViewController *mainScreenController = [[[DMMainScreenViewController alloc]     initWithNibName:@"DMMainScreenViewController" bundle:nil] autorelease];
self.view.window.rootViewController = mainScreenController;
[self.view.window makeKeyAndVisible];

然后我通过单击移动到最后一个选项卡。

有 2 个 UITextField 和一个 UITextView,然后当我触摸它们中的任何一个时,键盘没有显示,我也不能更改为另一个 TextField/TextView,但我可以移动到另一个选项卡。

我该如何解决?

谢谢。

最佳答案

要立即显示键盘,您需要使用以下行将文本字段设置为第一响应者:

[textField becomeFirstResponder];

但在这些 tabbarViewController 的情况下,正如 tonklon 在 his answer 中所说的那样:

If the tabbar is needed while the keyboard is visible you could only move the tabbar above the keyboard, or resize the tabbarcontroller, so that the tabbar remains visible.

Are you sure you need the tabbar while the keyboard is visible? Remember a tabbar is for changing the view. Perhaps you need to rethink your interaction design.

关于iPhone 键盘没有显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12293949/

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