Within my Mac application, I start a long running process (a local server) as so:
let process = Process()
process.launchPath = "/bin/zsh"
process.arguments = ["-c"] + ["'\(command)'"]
try process.run()
I've noticed that when my app is terminated, the process is not and it keeps running.
How can I make it so that the process is killed when my app is terminated (regardless of how it is terminated, i.e. force quit, kill -9
, crash, etc.)?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745249142a4618569.html
评论列表(0条)