I am trying to debug intermittent error on iPhone, crashing with a trace that looks like this:
objc_message_send
__invoking__
[NSInvocation invoke]
HandleDelegateSource
MainRunLoop
....
When GDB stops, I would like to be able to determine the details of which selector is trying to call the system - now I have set a breakpoint around [NSInvocation Invoke], but from this point I canβt understand how I stopped to learn the details of the NSInvocation object.
source
share