iOS:如何响应物理键盘的上/下/左/右箭头事件?
我所说的物理键盘是指连接到 iOS 设备的蓝牙无线键盘,或 iPad 键盘底座。
By physical keyboard I mean the bluetooth wireless keyboard connecting to the iOS device, or the iPad keyboard Dock.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有官方批准的方法可以做到这一点。您能做的最好的事情就是覆盖 -[UIApplication sendEvent:] 并查看发生的事件。
To my knowledge there is no officially sanctioned way to do this. The best you can do is override -[UIApplication sendEvent:] and take a look at the events coming through.