Suppose I have Objective C interface SomeClass which has a class method called someMethod:
SomeClass
someMethod
@interface SomeClass : NSObject { }
Is this built-in method what you want?
id objc_msgSend(id theReceiver, SEL theSelector, ...)
(See the runtime reference docs for this function.)