Hi I have seen a few examples of adding breakpoints in gdb using the command fb. I have tried using the following but it doesn't work...
fb -[NSTimer release]
I tried it but it says.
Function "-[NSTimer release]" not defined.
As you can probably tell I want the debugger to stop when release is called on any NSTimer object.
How can I create the breakpoint I want on [NSTimer release]?
Thanks!