UITextField - 捕获返回按钮事件
如何检测用户在编辑 UITextField 时何时按下“返回”键盘按钮? 我需要这样做,以便在用户按下“返回”按钮时关闭键盘。
谢谢。
How can I detect when a user pressed "return" keyboard button while editing UITextField?
I need to do this in order to dismiss keyboard when user pressed the "return" button.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
不要忘记在情节提要中设置委托...
Don't forget to set the delegate in storyboard...
委托不是必需的,这里有一句俏皮话:
遗憾的是,您无法直接在 Storyboard 中执行此操作(您无法将操作连接到在 Storyboard 中发出它们的控件),但您可以通过中间操作来完成此操作。
Delegation is not required, here's a one-liner:
Sadly you can't directly do this in your Storyboard (you can't connect actions to the control that emits them in Storyboard), but you could do it via an intermediary action.
您现在可以使用发送的事件“Did End On Exit”在情节提要中执行此操作。
在视图控制器子类中:
在所需文本字段的故事板中:
You can now do this is storyboard using the sent event 'Did End On Exit'.
In your view controller subclass:
In your storyboard for the desired textfield:
SWIFT 3.0
中的 EnterPressed() 函数将您所追求的所有行为
SWIFT 3.0
in enterPressed() function put all behaviours you're after
使用 UITextFieldDelegate 的 Swift 版本:
Swift version using UITextFieldDelegate :
斯威夫特5
Swift 5
当单击输入按钮时,将调用此委托方法。您可以从此委托方法捕获返回按钮。
When enter button is clicked then this delegate method is called.you can capture return button from this delegate method.