用户在 UITextField 中输入文本后,控件应自动切换
在我的应用程序中,我有两个文本字段,我希望用户在第一个文本字段中自动输入值后,将一个文本字段中的控件切换到第二个控件。
有人对此有任何想法吗?
谢谢,
In my app i have two textfields and i want the control from one text field to switch to second control as soon as the user is done entering the values in the first textfield automatically.
Does anybody has any idea on this?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设“完成输入”意味着用户点击键盘上的 return, ... 按钮。
UITextField 有 UITextFieldDelegate 协议的委托。这里的方法......
你可以用这种方式实现它......
如果“完成输入”没有返回,......键盘上的按钮,你可以实现这个委托的方法......
检查UITextField的用户键入时的文本。
I assume "done entering" means the user hits return, ... button on keyboard.
UITextField has delegate with UITextFieldDelegate protocol. And here's method ...
... you can implement it in this way ...
If "done entering" is not return, ... button on keyboard, you can implement this delegate's method ...
... to check UITextField's text when user did type.