I have written my first Hello World Objective C program. How do I add a breakpoint and inspect a variable? I can see a Breakpoints button but can't insert one.

Signed

  • Frustrated Visual Studio user
link|improve this question

71% accept rate
Shortcut: Insert cursor on the line you want, then hit "Command + \". – EmptyStack Feb 8 '11 at 10:40
Or just click in the left edge window border next to the required line. – Paul R Feb 8 '11 at 10:52
As I just learned from the docs I linked, the edge is called Gutter – vikingosegundo Feb 8 '11 at 10:58
feedback

2 Answers

up vote 1 down vote accepted

Maybe this is useful for you: Xcode Debugging Guide enter image description here

link|improve this answer
1  
enabling line numbers shouldn't be necessary – vikingosegundo Feb 8 '11 at 10:50
feedback

You don't need to right click or any such thing. To enable the breakpoints in your code all you have to do is click on a particular line number. You'll get a breakpoint symbol in your code there.

You can add multiple breakpoints to your code. The breakpoints button on top is used to put all your breakpoints ON (during debugging) or OFF (when necessary)

I'll be addressing a section on breakpoints in my blog ( http://techtalktone.wordpress.com ) soon.

Hope this helps :D

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.