在 iPhone 中自定义数字键盘
我需要在数字键盘中添加取消按钮。如何自定义以下键盘?当我点击取消按钮时,键盘将被隐藏。
I need to add cancel button in numeric keyboard. How to customize the following keyboard? When I click by cancel button, the keyboard will be hide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输入附件视图是一个视图位于键盘顶部。它必须是键盘的宽度并且高度是可调的。
在此视图上,您可以添加一个按钮,按下该按钮后,
UITextField
的ResignFirstResponder
就会出现,从而为您提供所需的功能。Input Accessory View is a view that sits on top of the keyboard. It has to the be the width of the keyboard and the height is adjustable.
On this view you could add a button, that when pressed will
ResignFirstResponder
of theUITextField
, thus giving you the funcationality you want.