In the dump class, there is the -A option, which can print the address of a function, for example.
@interface FooObject : NSObject { } - (void)y;
With this, you can set a breakpoint using the address:
(gdb) b *0x100000d54 Breakpoint 1 at 0x100000d54
Please note that if you did not split the executable, you can always set a breakpoint using the method name
(gdb) b -[FooObject y] Breakpoint 2 at 0x100000d60
(The address does not match the address that skips some frame setting code.)
source share