Is it possible to check whether a subclass implements a method that exists either in its immediate superclass or in some superclass of its superclass, etc?
E.g. I subcla
Using the runtime, you want to use the function Method
* class_copyMethodList ( Class cls, unsigned int *outCount );
This will give you a list to work with.