NSTask 直到 Cocoa / Objective-C 中的命令中断

发布于 2024-09-09 00:47:14 字数 147 浏览 4 评论 0原文

我正在尝试使用 NSTask 来运行 ASR 多播流、Ruby 服务器脚本等。基本上,我正在尝试使用 NSTask 运行任务,这些任务直到中断才完成运行,但问题是我无法得到NSTask 在后台运行。所以它最终只是运行并保留了我程序的其余部分。有什么帮助吗?

谢谢!

I am trying to use NSTask on to run an ASR Multicast Stream, a Ruby Server Script, etc. Basically, I'm trying to run tasks with NSTask that do not finish running until interrupted, but the problem is that I can't get the NSTask to run in the background. So it ends up just running and holding up the rest of my program. Any help?

Thanks!

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

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

发布评论

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

评论(1

多像笑话 2024-09-16 00:47:14

NSTask 不应阻止您的程序,除非您调用 waitUntilExit 方法。如果您必须这样做,您可以创建一个新线程并从其中启动/等待您的 NSTask 。作为阻止的替代方法,您可以查看 NSTaskDidTerminateNotificationNSTask< /code> 文档涵盖了所有这些选项。

NSTask shouldn't block your program unless you call the waitUntilExit method. If you have to do that, you could make a new thread and start/wait for your NSTask from inside it. As an alternative to blocking, you could look into NSTaskDidTerminateNotification. The NSTask documentation covers all of these options.

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