如何授予我的应用程序“辅助访问权限”一旦“启用辅助设备访问”已检查?
我有一个应用程序,它使用(完全用户友好的)系统范围的键盘挂钩来实现辅助功能。
当应用程序启动时,我检查是否选中“启用辅助设备访问”设置,正如其他人在这里询问的那样:以编程方式确定是否在 Cocoa 应用程序中选中了“启用辅助设备的访问权限”
我的问题是,即使在通过复选框启用访问权限,应用程序将在没有这些权限的情况下继续运行。如何授予(当前正在运行的)应用程序权限并使键盘挂钩正常工作?我需要重新启动应用程序吗?
I have an app that uses a (perfectly user-benevolent) system-wide keyboard hook for accessibility purposes.
When the app starts up, I check if the "Enable Access for Assistive Devices" setting is checked, as asked by someone else here: Programmatically determine if "enable access for assistive devices" is checked in Cocoa app
My problem is that, even after Enabling Access via the checkbox, the app continues to run without those privileges. How do I give the (currently running) app the privileges and get the keyboard hook working? Do I need to restart the app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
浏览您发布的链接,
我会向用户显示应用程序必须重新启动才能启用辅助权限的通知或消息,然后重新启动它。
Looking through the link you posted,
I would present the user with a notification or message that the application has to restart to enable assistive privileges, then restart it.