Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode + remove all breakpoints

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

like image 416
pratik Avatar asked Nov 03 '09 07:11

pratik


People also ask

How do I delete breakpoints in Xcode?

You can change the breakpoint in the same ways as a line breakpoint. Click on the breakpoint to enable/disable. Drag it away to delete it.

What is the shortcut key to clear all breakpoints?

To clear all breakpoints in the application From the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).


1 Answers

Well there's a 3 step way:

  1. Press CMD(⌘)+7 to show all breakpoints. In Xcode4 press CMD(⌘)+6, in Xcode3 press CMD(⌘)+ALT+B.
  2. Select all breakpoints with CMD(⌘)+A and delete them, like deleting text, with backspace.
  3. There's no step 3 :)
like image 105
mxg Avatar answered Oct 03 '22 04:10

mxg