iOS 中的文本输入区域失去焦点?
我在视图中有一个文本框,当我聚焦它时,键盘会弹出,我可以输入一些内容,但是当我完成它时,我不能失去焦点。就像如果我在文本框外部单击一样,键盘仍然存在。
我怎样才能摆脱键盘?
I have a text box in a view, when I focus it the keyboard pops up, I can type some stuff in, but when I'm done with it I can't lose focus to it. Like if I click outside the text box the keyboard remains.
How can I get rid of the keyboard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自文档:
这是使用 UITextFieldDelegate 方法执行此操作的一种方法:
确保将委托连接到文本字段。
From the docs:
Here is one way to do it using a UITextFieldDelegate method:
Make sure you hook up the delegate to the textField.