views:

27

answers:

3

I have created a simple hello world application in xcode using the command line utility. When i click on Build and Run. program successfully builds. I can see a message at status bar
"Debugging of HelloMac ended normally"

But debugger console on which Hello World message should appear is not opening.

A: 

Try shift-command-R to open the console, it doesn't open automatically as far as I know unless you use the all-in-one view and choose 'Debug' instead of 'Run'.

theMikeSwan
+2  A: 

Check your Xcode Preferences, under Debugging, the "On Start" setting.

progrmr
+1  A: 

Xcode => Preferences => Debugging => On Startup => Show Console:

alt text

Paul R