I'm executing a shell script using NSTask but the problem is that the shell script is one of those scripts that keeps running until you press control+c. It starts up fine but then my mac application just waits for it to end. How can I make it so that it detaches the task from the mac application and goes and runs it in a background.
feedback
|
|
Don't call In general, you shouldn't be using NSTask for a daemon like operation anyway. You should be using launchd. | |||||||
feedback
|