可可 NSNotification 监听进程

发布于 2025-01-07 23:16:14 字数 80 浏览 0 评论 0原文

我想使用 NSNotation 来监视进程,例如 iTunes。我想要在 iTunes“可用”且 iTunes 进程正在运行时收到通知。怎么做呢?

I want to use NSNotication to monitor a process e.g. iTunes. I want a notification when iTunes is "available", the process of iTunes is running. How to do that?

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

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

发布评论

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

评论(1

落叶缤纷 2025-01-14 23:16:14

如果您希望在 iTunes 可用时收到通知,则必须自行发布。这意味着您必须轮询进程列表,这意味着您可能根本不需要通知,但可以编写进程轮询代码。

如何执行此操作的一个示例是使用 shell 命令 ps waux |查找 iTunes | grep grep -v grep 。

If you want a notification for when iTunes is available, you'll have to post it yourself. This means you'll have to poll the process list, which means maybe you don't need a notification at all but can instead write the process polling code.

One example of how you can do this is with the shell command ps waux | grep iTunes | grep -v grep.

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