键盘 iPhone
是否有可能知道用户何时触摸iphone键盘? 当用户触摸键盘上的某个按钮时...:/
Is possible to know when the user touch the keyboard iphone? When the user touch some button from keyboard... :/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用 TextField。 即使您的 UI 不需要一个,您也可以将其框架设置为零,这样它就不会显示在屏幕上。 然后,您可以使用文本字段的委托回调方法来访问按下的键。
注意:为了避免编译器警告,请确保在 .h 文件中该类明确表示它实现了 UITextFieldDelegate 协议。 IE:
The easiest way is to use a TextField. Even is your UI Does not call for one, you can set it's frame to zero so it doesnt show up onscreen. Then you can get access to the keys pressed by using the text field's delegate callback methods.
Note: to avoid a compiler warning, make sure in your .h file the class explicitly says it implements the UITextFieldDelegate protocal. ie: