What is the best way to launch a child process from a Cocoa application. The thing I really need to ensure is that all child processes terminate when the parent application quits.
I'm more than familiar with how to use fork and exec, but do I really want to create an entire copy of my not-too-heavy but also not-that-lightweight Cocoa application?