Is there any way to remove all the breakpoints in Xcode?
问题:
回答1:
Well there's a 3 step way:
- Press CMD(⌘)+7 to show all breakpoints. In Xcode4 press CMD(⌘)+6, in Xcode3 press CMD(⌘)+ALT+B.
- Select all breakpoints with CMD(⌘)+A and delete them, like deleting text, with backspace.
- There's no step 3 :)
回答2:
Its very easy to do in new Xcode. Just click on breakpoints Tab then select all then delete.
Xcode 10 Screenshot:
Old Xcode Screenshot:
tap. See attach image for clear reference.
回答3:
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.
回答4:
In Xcode 4, in the debugger console, type "breakpoint delete" or "br del" for short:
(lldb) br del
About to delete all breakpoints, do you want to do that?: [Y/n] y
All breakpoints removed. (1 breakpoints)
(lldb)
You can't rely on the GUI breakpoint list, since nothing you enter from the command line will show up there.
回答5:
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
回答6:
In Xcode 9 it's CMD(⌘) + 8 to access all breakpoints, you can also just click here:
Then you can select and delete them.
回答7:
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.
回答8:
As an addition to mxg 's answer above:
in Xcode 5 it's been changed to CMD(⌘) + 7
回答9:
For Xcode 5: In ToolBar, select Navigate -> select Reveal in Project Navigator -> In Navigator area, select Show the Breakpoint Navigator.
Here, You can edit, hide/unhide, share, move the breakpoint for each and every class.
Note: Because of Xcode newbie's, am explained the steps from toolbar to show the Breakpoint Navigator.
回答10:
CMD(⌘) + a
CMD(⌘) + /
CMD(⌘) + /
回答11:
In XCode 7 you can just drag a bp into the project view window and an X will appear, release mouse and it will be deleted.