Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using the "Step into" command in XCode debugger, how can I avoid it to step into the standard system headers? This behaviour makes sense because it's a headers being compiled, but is a waste of time. I never want to see what's happening inside the standard library, just my code.

share|improve this question

1 Answer

Not a permanent fix, but right to the left of the "step into" command is a "step over".

Not sure if there's a better way, but what I have been always doing is just switching to the step over button whenever I'm looking at Standard system functions.

share|improve this answer
1  
It works when already inside, but won't avoid to get into it. – Roger Oct 27 '11 at 4:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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