How to disable all breakpoints in Xcode
breakpoints, xcode
Solution
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.
Problem
Is there an easy way to disable all breakpoints in Xcode? I tried: - highlight all breakpoints - click 'Deactivate' That does not disable all of them. I need to select one at a time, and unmark the checkbox. I wonder if there is an easy way to disable a bunch of them altogether.