You can get class methods with:
NSMethodSignature *pMS = [[YourObject class] methodSignatureForSelector: (SEL)aSelector];
The fragment [YourObject class]returns an instance of a class object (singleton), which can then be used to obtain class methods.
ADD: New information from the comments below. You can simply do the following:
NSMethodSignature *pMS = [YourObject methodSignatureForSelector: (SEL)aSelector];
source
share