Objective-C/Cocoa:获取关键代码
你好 要设置我的应用程序热键,我需要将字符转换为其键码。这怎么可能?
我有多个修饰键复选框和一个小文本字段。但我确信我看到了显示按下的整个组合键的文本字段...... 因为我没有找到任何东西,所以我选择了一个简单的文本字段。所以现在我需要这个字段中字符的关键代码。
(我的想法:我自己的 nstextview,覆盖 keydown 或 keyup 并获取 [event keycode] 或类似的东西。但我想使用文本字段!)
hi
to set my applications hotkeys i need to convert a character into its keycode. how is that possible?
i have multiple checkboxes for the modifier keys and a small textfield for the key. but im sure i saw textfields which display the whole key combination which is pressed...
because i didnt find anything i took a simple textfield. so now i need the key code of the char in this field.
(my idea: my own nstextview, overwrite keydown or keyup and get the [event keycode] or something similar. but i want to use a textfield!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找快捷记录器。您可以在界面中使用它来记录键盘快捷键。
I think you're looking for Shortcut Recorder. It's a control you can use in your interfaces for recording keyboard shortcuts.
有一个名为 Key Codes 的小应用程序,它应该可以满足您的需求。
There is a small application called Key Codes that should do what you want.