I'm trying to build a basic Mac OS Application using Xcode which allows the user to force eject a CD that gets stuck in their drive without having to reboot their computer each time. Basically I want to have an NSButton
on my window labeled "Eject" and I'm looking for the button to execute the Terminal command "drutil tray eject" to forcefully eject the CD from the drive when not responding. I'm kinda a newbie to Xcode and this is my first Mac App.
Thank you! :-)
Use
NSTask
. Have a look at documentation and Quartz Composer CommandLineTool.