如何添加“完成”按钮以关闭数字键盘
我按照教程进行操作:
http://www.neoos。 ch/news/46-development/54-uikeyboardtypenumberpad-and-the-missing-return-key
关闭数字键盘, 本教程将按钮作为子视图添加到数字键盘,
我的问题是,在同一视图中我也使用文本字段来输入文本,因此,如何区分数字字段和文本字段。这样我就可以相应地隐藏按钮视图。
I followed the tutorial:
http://www.neoos.ch/news/46-development/54-uikeyboardtypenumberpad-and-the-missing-return-key
to dismiss the number pad,
this tutorial add the button as sub view to the number pad,
my problem is, in the same view I am using the text field to enter text also,so, how to differentiate the number field, and text field. so that I can hide the button view accordingly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Yoy 可以使用 UITextFieldDelegate 协议而不是 NSNotifications,并且在方法
textFieldDidBeginEditing:
和textFieldDidEndEditing:
中检查正在使用哪个字段。像这样的事情:Yoy can use UITextFieldDelegate Protocol instead of NSNotifications, and inside methods
textFieldDidBeginEditing:
andtextFieldDidEndEditing:
check which field is being used. Something like this: