以编程方式确定是否“启用辅助设备访问”在 Cocoa 应用程序中检查

发布于 2024-11-27 22:22:55 字数 131 浏览 1 评论 0原文

使用 NSAccessibility API 的 Cocoa 应用程序需要在通用访问首选项窗格中选中“启用辅助设备的访问”。我见过许多应用程序在运行时如果禁用此功能会弹出警告。如何以编程方式检查此功能是否已启用,以便我可以在我的应用程序中显示警告?

Cocoa apps using the NSAccessibility API require "enable access for assistive devices" to be checked in the Universal Access pref pane. I've seen many apps pop a warning if this is disabled when they run. How do I programmatically check if this is enabled so I can show a warning in my app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月隐月明月朦胧 2024-12-04 22:22:55

在 OS X 10.9 Mavericks 中,AXAPIEnabled() 已弃用

可以使用 AXIsProcessTrustedWithOptions 代替:

NSDictionary *options = @{(id)kAXTrustedCheckOptionPrompt: @YES};
BOOL accessibilityEnabled = AXIsProcessTrustedWithOptions((CFDictionaryRef)options);

如果您为 kAXTrustedCheckOptionPrompt 传递 YES,系统将向用户显示一个有用的小对话框,其中包含指向系统的链接偏好:

“YourApp.app 希望使用辅助功能来控制这台计算机。”

在此处输入图像描述

In OS X 10.9 Mavericks, AXAPIEnabled() has been deprecated.

AXIsProcessTrustedWithOptions can be used instead:

NSDictionary *options = @{(id)kAXTrustedCheckOptionPrompt: @YES};
BOOL accessibilityEnabled = AXIsProcessTrustedWithOptions((CFDictionaryRef)options);

If you pass in YES for kAXTrustedCheckOptionPrompt, the system will show the user a helpful little dialog with a link to System Preferences:

"YourApp.app would like to control this computer using accessibility features."

enter image description here

西瓜 2024-12-04 22:22:55

我认为您正在寻找 AXAPIEnabled()

extern Boolean AXAPIEnabled ();  

引用 文档

返回辅助功能 API 是否已启用。

如果当前启用了辅助功能 API,则返回 TRUE,否则返回
错误。

如果辅助功能 API 不可用,辅助应用程序将无法工作
启用或调用进程不是受信任的可访问性
客户。用户可以通过选中“启用”来启用辅助功能 API
通用访问首选项中的“辅助设备访问权限”。

I think you're looking for AXAPIEnabled().

extern Boolean AXAPIEnabled ();  

Quoting the docs:

Returns whether the accessibility API is enabled.

Returns TRUE if the accessibility API is currently enabled, otherwise
FALSE.

Assistive applications will not work if the accessibility API is not
enabled or if the calling process is not a trusted accessibility
client. Users can enable the accessibility API by checking "Enable
access for assistive devices" in Universal Access Preferences.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文