以编程方式自动启动 Mac 应用程序

发布于 2024-08-02 21:54:07 字数 103 浏览 4 评论 0原文

我们有一个跨平台的应用程序。该应用程序具有在用户登录后自动启动的功能。如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轮廓§ 2024-08-09 21:54:07

如果它是一个 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.

他不在意 2024-08-09 21:54:07

您必须创建一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文