使用firstResponder关闭键盘
要关闭键盘,我使用以下任一方法:
[sender dismissFirstResponder]
[self dismissFirstResponder]
问题是,我遇到一种情况,用户选择一个文本字段,而其他一些文本字段是显示键盘的第一个响应者。我想在选择此特定文本字段时关闭键盘。因此,这些都无法消除键盘。
如果我不知道谁是第一响应者,如何关闭键盘?
To dismiss the keyboard I use either one of the following:
[sender dismissFirstResponder]
[self dismissFirstResponder]
The problem is, I have a situation where the user selects a text field, and some other text field is the first responder with the keyboard showing. I want to dismiss the keyboard when this particular text field is selected. So neither of these will work to dismiss the keyboard.
How can I dismiss the keyboard if I don't know who is the first responder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此答案 了解如何找到当前的第一响应者。
See this answer for how to find the current first responder.