tags:

views:

132

answers:

2

Hi,

Is there an easy way to disable all Breakpoints that in Xcode? I tried: * high-light all breakpoints * click 'Deactivate'

That does not disable all of them?

I need to click one at a time, and unclick the 'checkbox'.

I wonder if there is an easy way to disable a bunch of them altogether.

Thank you.

+2  A: 

If you expand the Breakpoints section in the Groups & Files pane, you'll find two further subdirectories - Project Breakpoints and Global Breakpoints. Assuming that the breakpoints set are specific to your current project, your breakpoints will be listed under Project Breakpoints. Right click on this directory and select Disable Breakpoints from the context menu, which will disable all the breakpoints for your project.

Perspx
A: 

You've gotta select 'em on the left under "Groups and files" (there should be a Breakpoints entry in the tree). Then you can right click and enable/disable from there. More info here.

EightyEight