在 Objective C 中编写守护进程
我需要编写一个守护进程,就像使用 Objective C 的 OS X 上的 Windows 服务一样。谁能指出一些样本吗?或指导我如何做到这一点?
I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好以允许在前台运行的方式编写程序,然后使用外部工具和技术(例如 OS X 的 launchd) 分离运行它们。这使您的程序更易于测试和集成。
It's best to write your program in a way that lets it be run in the foreground, and then use external tools and techniques (such as OS X's launchd) to run them detached. This makes your program easier to test and integrate.