获取正在运行的应用程序列表(从 Applescript 翻译?)
我想监控正在运行的应用程序。它在 AppleScript 中足够简单,但我找不到任何关于如何在 Objective-C 中执行相同操作的有用信息。
on run
tell application "System Events" to get name of every process
end run
I want to monitor what applications are running. It's simple enough in AppleScript, but I can't find any useful information about how to do the same thing in Objective-C.
on run
tell application "System Events" to get name of every process
end run
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的第一个停靠点是 NSWorkspace 文档。特别是
runningApplications
方法。Your first port of call is the NSWorkspace documentation. In particular the
runningApplications
method.