Sometimes it's handy to see when someone is asking your object what selectors it reponds to. Stick this in your class and you can see what folks are asking for:- (BOOL) respondsToSelector: (SEL) aSelector { NSLog (@"%s", (char *) aSelector); return ([super respondsToSelector: aSelector]); } // respondsToSelectorThis takes advantage of an implementation detail where theSEL
is actually a pointer to a C string