I wrote a Perl application which I run on the terminal using command lines. I created aliases for the various command options in the shell to reduce the typing. Even so, having a GUI to to select the various commands and other arguments would make it easier to run the app.
What's a good approach to developing the GUI wrapper on OSX? I bought a couple of books recommended here at Stackoverflow to learn Cocoa and Objective C. My initial thoughts to tackle this was to go with a pure Cocoa/Objective C GUI. But I also read elsewhere that Applescript can be used to interface to the command line.
What do you recommend? Go with the Cocoa/Ojbective C, Applescript, or some other approach?
I would also appreciate it if you have some recommendations to tutorials or other writeups for the approach(es) you suggest.
Thanks.