Xcode + remove all breakpoints

Viewed 101980

Is there any way to remove all the breakpoints in Xcode?

14 Answers

In Xcode, you can also do by right clicking the project name on the breakpoints tab and then you can see the options for deleting all breakpoints including disabling and sharing breakpoints.

enter image description here

Xcode 10

The most easiest way is to do ⌘ + y to disable enable breakpoints .

There is another way

go to Xcode project navigations pane

Click on show Breakpoint navigator

enter image description here

Right click on the project file and select disable all break points

enter image description here

As an addition to mxg 's answer above:

in Xcode 5 it's been changed to CMD(⌘) + 7

For XCode 12:

  1. Press CMD ⌘ + 8

  2. Select All (CMD ⌘ + A)

  3. Right Click and Select "Delete Breakpoints"

For XCode 12.4

  1. Click on Debug in Toolbar
  2. Choose Breakpoints
  3. Then Click on Delete All Breakpoints

That's it!!

CMD(⌘) + a
CMD(⌘) + /
CMD(⌘) + /

Related