单击按钮时如何激活键盘
单击 UIButton 时如何激活键盘。
我确实有按钮 当我单击按钮时,我需要激活键盘。
默认情况下,当我单击 UITextField 时,它将激活。
如何在 UIButton 时实现。只需单击一个按钮即可显示键盘。
@感谢大家。提前
How to activate Keyboard when UIButton is Clicked.
I do have button When I clicked the button I need to activate the keyboard.
For default when i click for UITextField it will activated..
How to Implement when UIButton. Just a Button clicked need to show Keyboard.
@thanks to all. in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在字段上调用
becomeFirstResponder
,该字段将在显示后接收来自键盘的输入。
call
becomeFirstResponder
on the field which will receive the input from the keyboard after it's shown.