以编程方式启用对辅助设备的访问

时间:2012-10-22 07:09:40

标签: macos cocoa accessibility accessibility-api

我想以编程方式启用辅助设备的访问权限。

有另一种不使用

的方法
NSURL *prefPaneURL = [NSURL fileURLWithPath:[[paths objectAtIndex:0] stringByAppendingPathComponent:@"UniversalAccessPref.prefPane"]];
            [[NSWorkspace sharedWorkspace] openURL:prefPaneURL];

打开系统偏好设置?

1 个答案:

答案 0 :(得分:0)

你可以使用苹果脚本

tell application "System Events" to if not UI elements enabled then
    set UI elements enabled to true
end if