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.
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
- 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
This comment has been removed by the author.
ReplyDelete