Top "Nstask" questions

NSTask Class on OS X API , lets you run another program as a subprocess and monitor that program’s execution

Real time NSTask output to NSTextView with Swift

I'm using an NSTask to run rsync, and I'd like the status to show up in the text view of …

swift nstextview nstask
Getting data from the nstask - communicating with command line - objective c

I know how to send data to the task: NSData *charlieSendData = [[charlieImputText stringValue] dataUsingEncoding:NSUTF8StringEncoding]; [[[task standardInput] fileHandleForWriting] writeData:…

objective-c nsdata nstask
How to give permission using NSTask - objective-c

I need to basically do a "sudo" but, I need to give that kind of permission to my NSTask code. …

objective-c permissions sudo nstask
NSTask and NSPipe example to comunicate with the command line objective-c

Can someone show a quick example on how to use NSTask and NSPipe in conjunction to do this: Charlie AI …

objective-c xcode user-interface nstask