来自 Cocoa 应用程序的命令行参数
我知道有很多关于如何执行此操作的信息,但我想知道使用 NSTask 是否是从 Cocoa 应用程序调用命令行参数的最佳方法。另外,如果我想使用诸如“dns-sd ...”之类的东西(直到被中断或杀死才结束的东西),使用 NSTask 调用杀死它是关闭它的最佳方法吗?
谢谢!
I know there is a lot of info out there on how to do this, but I was wondering if using NSTask is the best way to call command line arguments from a Cocoa App. Also, if I wanted to use something like "dns-sd ..." (something that doesn't end until interrupted or killed), would calling a kill on it using NSTask be the best way to close it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以使用 fork 和 execv()。
You can also use fork and execv().