Wednesday 2 March 2011

Removing invisible breakpoints in xcode debugger

There are times when your debugger stuck at invisible breakpoints.To solve this issue just run the application and open the console of xcode , wait for the breakpoint to hit.Then enter the following command in console after "[gdb]" prompt.
  • clear

You will get confirmation like this "Deleted breakpoint 8" where 8 is the number of breakpoint deleted.
You can see your all breakpoints by this command
  • info breakpoints

1 comment: