以编程方式自动启动 Mac 应用程序
我们有一个跨平台的应用程序。该应用程序具有在用户登录后自动启动的功能。如何在 mac 中执行此操作?从应用程序内部。手动添加登录项是可行的,但我正在寻找如何使用 API 或类似的东西来完成它。
We have a cross platform application. The application has a feature to autostart it once the user logs in. How to do this in mac? from within the application. Manually adding it Login Items works but I am looking for how to do it using an API or something similar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是一个 GUI 应用程序,将其添加为登录项是最好的方法。 Apple 的开发人员关于该主题的注释列出了 3 种方法:使用共享文件列表 API,通过 Apple 活动,或使用 CFPreferences API。
If it's a GUI app adding it as a login item is the best way to go. Apple's dev note on the subject lists 3 ways to do this: with the Shared File Lists API, via Apple Events, or with the CFPreferences API.
您必须创建一个 launchd 属性列表文件并将其放置在
~/Library/LaunchAgents
或/Library/LaunchAgents
中,具体取决于您是想要在系统范围内进行更改还是仅针对当前用户。Apple 的这份指南将帮助您完成该任务。
You have to create a launchd property list file and place it in
~/Library/LaunchAgents
or/Library/LaunchAgents
, depending if you want the change system-wide or only for the current user.This guide from Apple will help you accomplish that task.