如何检测 Mac 上的所有光标移动和按键操作?
在 OSX Lion 上使用 Objective-c 检测 Mac 上所有光标移动和按键的最佳方法是什么?
What is the best method to detect all cursor movements and key presses on a Mac using objective-c on OSX Lion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过安装事件监视器来做到这一点
I did it by installing an event monitor
通常,您可以子类化
NSApplication
并重写-sendEvent:
方法。Typically, you would subclass
NSApplication
and override the-sendEvent:
method.