Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现我可以使用以下方法打开特定的首选项窗格: 首选项窗格的名称NSWorkspace.shared.open(URL(fileURLWithPath: "/System/Library/PreferencePanes/%name%.prefPane")) 在哪里%name%。
NSWorkspace.shared.open(URL(fileURLWithPath: "/System/Library/PreferencePanes/%name%.prefPane"))
%name%
现在我想使用 Swift 从该首选项窗格中单击一个按钮。到目前为止,我看到的所有解决方案都使用某种 AppleScript,但如果可能的话,我想避免这种情况,而只使用 Swift。有没有办法做到这一点?