May 2014
Intermediate to advanced
624 pages
19h 43m
English
Many developers, even if they regularly use breakpoints, believe logging is the only way to pull control flow and state out of their programs when it’s not practical to stop dead at every pass through a segment of code. Not so. If you take nothing else away from this chapter, remember this: Almost never do you have to compile NSLog() or other printing functions into your application for debugging.
Use breakpoint options instead of NSLog()s. The options popover (Figure 28.2) is a little intimidating, but everything in it has a purpose, and once you understand what you can do, it all falls into place.
Figure 28.2 A breakpoint ...