UITextField焦点
如何以编程方式将焦点分配给视图中的特定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试在 viewWillAppear 中执行此操作:
通过使该字段成为第一响应者,它将获得焦点并且将显示键盘。
Try doing this in
viewWillAppear:
By making the field the first responder, it have focus and the keyboard will be displayed.
将您视图的第一响应者设置为文本字段。 这可以在 IB 中完成。
Set the first responder for your view to be the text field. This can be done in IB.
迅速:
In swift: