单击“完成”时键盘 resignfirstresponder
我有一个名为 searchBox
的文本字段,如果用户单击“完成”,我会尝试摆脱键盘。
我需要知道 IBAction 才能执行此操作吗?
I have a textfield called searchBox
and am trying to get rid of the keyboard if the user either clicks on Done.
Is there an IBAction that I need to know to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须让你的视图控制器成为一个 UITextFieldDelegate 并写入
然后写入:
You have to make your viewcontroller an UITextFieldDelegate and write in
And then write:
在视图控制器中:
请参阅 UITextFieldDelegate 文档 了解详细信息(您可能想要返回在我的示例中用“否”代替“是”)。
In your view controller:
See the UITextFieldDelegate documentation for details (you might want to return NO instead of YES in my example).