Franklin Wise
Results
3
comments of
Franklin Wise
I have the same issue
class_copyMethodList seems to only return instance methods no matter what is passed to it??
actually... found this to work for getting Class Methods ``` const char *className = class_getName(self.class); Class myClass = (Class)objc_getMetaClass(className); Method *methods = class_copyMethodList(myClass, &methodCount); ```