“扩展”>“共享菜单” Pane 。 我已经尝试过: NSURL *URL = [NSURL URLWithString:@"x-6ren">
gpt4 book ai didi

macos - 如何在 OSX 上打开 "Share Menu"首选项?

转载 作者:行者123 更新时间:2023-12-03 16:45:22 25 4
gpt4 key购买 nike

很像 Safari,尝试实现一个按钮,单击该按钮会打开“系统偏好设置”>“扩展”>“共享菜单” Pane 。

我已经尝试过:

NSURL *URL = [NSURL URLWithString:@"x-apple.systempreferences:com.apple.preferences.extensions?Share_Menu"];
[[NSWorkspace sharedWorkspace] openURL:URL];

但是,这似乎不适用于较新的版本,有什么想法吗?

System Preferences Extensions Pane

最佳答案

您可以使用 Scripting Bridge 执行以下操作:

 SBSystemPreferencesApplication *systemPrefs =
[SBApplication applicationWithBundleIdentifier:@"com.apple.systempreferences"];

[systemPrefs activate];

SBElementArray *panes = [systemPrefs panes];
SBSystemPreferencesPane *notificationsPane = nil;

for (SBSystemPreferencesPane *pane in panes) {
if ([[pane id] isEqualToString:@"com.apple.preferences.extensions"]) {
notificationsPane = pane;
break;
}

}

[systemPrefs setCurrentPane:notificationsPane];

SBElementArray *anchors = [notificationsPane anchors];

for (SBSystemPreferencesAnchor *anchor in anchors) {
if ([anchor.name isEqualToString:@"Extensions"]) {
[anchor reveal];
}
}

当然,您需要将 ScriptingBridge 框架添加到您的项目中,并为系统首选项添加 Scripting Bridge 头文件。有关如何使用 Scripting Bridge 的更多详细信息,您可以在 Apple 的开发人员文档中找到。

希望这有帮助

关于macos - 如何在 OSX 上打开 "Share Menu"首选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51116039/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com