エコー「 HelloWorld」を実行する必要がある単純なタスクを実行しようとしています
これが私のコードです:
NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath:@"/bin/bash"];
NSArray *arguments;
arguments = [NSArray arrayWithObjects:@"echo","hello world" nil];
[task setArguments: arguments];
NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];
[task setStandardError: pipe];
NSFileHandle *file;
file = [pipe fileHandleForReading];
[task launch];
//...
//Code to get task response
そのようなファイルやディレクトリのエラーを私に与え続けないでください..私は何が間違っているのですか?