Vielleicht ist es ein Xcode-Bug, aber ich habe noch eine Lösung.
Sie können LLDB verwenden, um alle aktuellen Haltepunkte anzuzeigen und zu bearbeiten.
Geben Sie einfach die folgenden Befehle in das lldb-Fenster ein:
(lldb) is the prompt.
(lldb) help -> for help
(lldb) help breakpoint -> for breakpoint subcommand's help
(lldb) breakpoint list -> list all the breakpoints.
(lldb) breakpoint delete -> Delete the specified breakpoint(s). If no breakpoints are
specified, delete them all.
(lldb) breakpoint delete 7.1 -> delete breanpoint 7.1
and, you can use this command to continue the program:
(lldb) c