سؤال

I'm using @dynamic properties in combination with -forwardInvocation: to generate properties at runtime (like described in this answer). Now, when I try to work with such a property (assuming name is such a dynamic property) in GDB I always get this:

(gdb) call (void) [myObject setName:@"foo"]
Target does not respond to this message selector.

(gdb) po [myObject name]
Target does not respond to this message selector.

Is there a switch in GDB to make this work?

هل كانت مفيدة؟

المحلول

You can use po [myObject performSelector:@selector(name)] as a workaround, though it's quite awkward.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top