Reputation: 1708
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 :
and there is a log window on IOS simulator.
are these my only available option and should i only stick to them ?
Upvotes: 1
Views: 521
Reputation: 17419
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
:
Or
On Top Right side
So all Errors and logs are show in Debug area.
Upvotes: 1
Reputation: 122458
You use the Console in Xcode, controlled from the Debug Area menu:
Which looks like this:
Upvotes: 2
Reputation: 3663
See three icon are in the Top right corner click on middle icon
Upvotes: 2