Is there a trick to getting Xcode to step into performSelector:?
Conversation
You can use "tb" to set a temporary breakpoint on that selector, then step over.
2
1
Is there not some way to just tell gdb to *actually* step? I just don't understand why it's special.
1
Replying to
gdb's "s" requires knowing the function boundaries; you could probably write a script to "si" until it hits symbols it knows.

