I use %s for _cmd, the latest XCode will generate an error "Format specifies type char * but the argument has type SEL". Checked documentation and couldn't find a clue. Anyone know the correct string specifier to use?
I've never done Apple programming in my life, so bear with me, but a little Googling revealed easily that:
SEL
to NSString
use NSStringFromSelector
%@
format specifier on that.