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.
我有一个在后台工作的简单状态栏应用程序。我想知道当前哪个应用程序处于活动状态。
有可能的?
查看NSRunningApplication该类及其活动属性(我已为您链接了文档)。您可以查看一系列正在运行的应用程序并找到“活动”的应用程序。
NSRunningApplication
哦,要获得一系列正在运行的应用程序,您可以通过[NSWorkspace currentWorkspace] runningApplications].
[NSWorkspace currentWorkspace] runningApplications]
希望这可以帮助!