I would like to use Apple’s Xcode IDE to develop applications on the OS X, but I find the UI immensely confusing because I am so used to developing in Visual Studio on Windows.
Does anyone know of any Xcode quickstart guides for the Visual Studio developer that map common tasks and functionality from one to the other?
For example, I can’t even work out how to launch the C/C++ command line tool being written in a new shell window (Terminal.app) i.e. what would happen if you pressed F5 in Visual Studio.
For viewing the shell when a command line app, that is done in the Console window, not in a terminal window. This allows full interaction with gdb. To open the Console window, hit Shift-Command-R to see the output of your program.
If you would like Xcode to show the Console window when you start your app, go into preferences. In the Debugger tab, there’s a drop-down list labeled ‘On Start:’ Select ‘Show Console’ or ‘Show Console and Debugger’ and they will open when you hit run.
As far as a quickstart or tutorial, I’m not sure of any specific online tutorials, but you may want check out the book Xcode 3 Unleashed by Fritz Anderson.