我想以编程方式启用辅助设备的访问权限。
有另一种不使用
的方法NSURL *prefPaneURL = [NSURL fileURLWithPath:[[paths objectAtIndex:0] stringByAppendingPathComponent:@"UniversalAccessPref.prefPane"]];
[[NSWorkspace sharedWorkspace] openURL:prefPaneURL];
打开系统偏好设置?
答案 0 :(得分:0)
你可以使用苹果脚本
tell application "System Events" to if not UI elements enabled then
set UI elements enabled to true
end if