NSRunningApplication,返回最近使用的应用程序列表?
我正在尝试获取最近使用的应用程序的列表。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,没有记录的方法可以执行此操作,但我准确地写了您使用私有 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.
您可以查看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.