1

Im new to Xcode programming , and i want to know is there any way to Find out program compile

and execution behavior on Xcode IDE?

I have some exprience on both Eclipse and VisualStudio IDE.

in eclipse i use Logcat for watching the output messages and error logs and Same Happens to

visual studio on Output or error list windows , but problem is i couldnt find the way to check

this log on Xcode.

there is a guid on apple site :

https://developer.apple.com/library/ios/documentation/ToolsLanguages/Conceptual/Xcode_Overview/DebugYourApp/DebugYourApp.html

and there is a log window on IOS simulator.

are these my only available option and should i only stick to them ?

2
  • 3
    This question appears to be off-topic because it is about not relating programming Commented Feb 20, 2014 at 9:16
  • 1
    asking about how to debug a program on ide is off topic ? Commented Feb 20, 2014 at 9:19

3 Answers 3

2

See three icon are in the Top right corner click on middle icon

enter image description here

Sign up to request clarification or add additional context in comments.

Comments

2

You use the Console in Xcode, controlled from the Debug Area menu:

enter image description here

Which looks like this:

enter image description here

Comments

1

All your Logs and errors are shown in Debug are,

You can print log using NSLog i.e. NSLog(@"log message");

You can show it from : enter image description here

Or

On Top Right side enter image description here

So all Errors and logs are show in Debug area.

enter image description here

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.