views:

1622

answers:

3

Hello,

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

Regards, Pratik

+12  A: 

Well there's a two step way:

  1. Press cmd+alt+B to show all breakpoints.
  2. Select all breakpoints and delete them, like deleting text, with backspace.
mxg
+3  A: 

Other ways:

  • Select Breakpoints group in Groups and Files tree, click in Detail view, Command-A, Delete
  • Disclose Breakpoints smartgroup in Groups and Files tree, shift- or command-select breakpoints in outline, press Delete
  • Run > Console, when app is paused, type "delete breakpoints" and press Return
cdespinosa
A: 

Additionally, you can customize your Toolbar and put the "Breakpoints" button there. Click this on/off will active/deactivate all breakpoints. While this doesn't remove them, it may be useful if you just don't want them to be hit for a run.

MarkPowell