Xcode 4: How do you view the console? Xcode 4: How do you view the console? objective-c objective-c

Xcode 4: How do you view the console?


You need to click Log Navigator icon (far right in left sidebar). Then choose your Debug/Run session in left sidebar, and you will have console in editor area.

enter image description here


for Xcode 5:

View->Debug Area->Activate Console

shift + cmd + c


If you just want to have the log output display when you run your app then you can go into XCode4 preferences -> Alerts and click on 'Run starts' on the left hand column.

Then select 'Show Debugger' and when you run the app the NSLog output will be displayed below the editor pane.

This way you don't have to select on the 'up arrow' button at the bottom bar.