NSRunningApplication,返回最近使用的应用程序列表?

发布于 2024-09-04 16:24:42 字数 288 浏览 3 评论 0原文

我正在尝试获取最近使用的应用程序的列表。 NSWorkspace 返回活动应用程序的列表,我可以使用 NSRunningApplication 对它们进行一些选项排序。请参阅下面的列表:

- launchDate
- finishedLaunching
- processIdentifier

我不需要启动日期,而是最近的“活动”日期(如 cmd-tab 排序方式)。 有谁知道这个问题的解决方案?

I'm trying to get a list of the most recently used applications. NSWorkspace returns a list of active applications and I can sort them on a few options using NSRunningApplication. see list below:

- launchDate
- finishedLaunching
- processIdentifier

I don't want the launch date but the most recent 'active' date (like the way cmd-tab sorts).
Does anyone know the solution for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

从﹋此江山别 2024-09-11 16:24:42

据我所知,没有记录的方法可以执行此操作,但我准确地写了您使用私有 API 所要求的内容: http://gist.github.com/163918

另外,请参阅获取按上次使用排序的正在运行的应用程序列表,适用于不使用私有 API 的解决方案。

There is no documented way of doing this that I'm aware of, but I wrote exactly what you are asking for using private APIs: http://gist.github.com/163918

Also, see Getting the list of running applications ordered by last use for solutions that do not use private APIs.

日久见人心 2024-09-11 16:24:42

您可以查看Apple提供的此示例: http://developer.apple.com/library/mac/#samplecode/AppList/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008859-Intro-DontLinkElementID_2

在此示例中,他们使用 NSRunningApplications 类来获取有关正在运行的应用程序的所有捆绑数据。

You can look at this sample provided by Apple: http://developer.apple.com/library/mac/#samplecode/AppList/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008859-Intro-DontLinkElementID_2

In this sample, they are using NSRunningApplications Class in order to get all the bundle data about running applications.

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