UITextField焦点

发布于 2024-07-25 03:27:57 字数 80 浏览 9 评论 0原文

如何以编程方式将焦点分配给视图中的特定 UITextField? 我有几个字段,在视图显示上,我想将光标放在特定字段上,而不是顶部的第一个字段。

How can I programmatically assign focus to a specific UITextField in a view? I have several fields and on view display, I'd like to put the cursor on a specific field, not the first one at top.

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

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

发布评论

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

评论(3

暗恋未遂 2024-08-01 03:27:57

尝试在 viewWillAppear 中执行此操作:

[desiredField becomeFirstResponder];

通过使该字段成为第一响应者,它将获得焦点并且将显示键盘。

Try doing this in viewWillAppear:

[desiredField becomeFirstResponder];

By making the field the first responder, it have focus and the keyboard will be displayed.

清醇 2024-08-01 03:27:57

将您视图的第一响应者设置为文本字段。 这可以在 IB 中完成。

Set the first responder for your view to be the text field. This can be done in IB.

若言繁花未落 2024-08-01 03:27:57

迅速:

desiredField.becomeFirstResponder()

In swift:

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