如何知道键盘何时隐藏文本字段?
我有一个问题:当我单击文本字段时,我可以移动视图,但我希望当键盘隐藏文本字段时我的视图也移动。我使用的是表格视图,文本字段位于不同的单元格中。请有人帮助我。
I have a problem: I can move my view when I click on a text field, but I want my view to move when the keyboard hides the text field. I'm using a table view and the text fields are in different cells. Please someone help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您能否按照教程添加 UIKeyboardWillHideNotification 这里
Can you please add the UIKeyboardWillHideNotification as per the tutorial here
您是否已注册接收 UIKeyboadWillShowNotification 和 UIKeyboardWillHideNotification 的通知....然后您选择的选择器可以选择是否移动视图等。
have you registered to receive notifications of UIKeyboadWillShowNotification, and UIKeyboardWillHideNotification.... then your chosen selector can chose wether or not to move the view etc.