找出Objective-C类是否覆盖方法

时间:2015-04-22 21:35:19

标签: objective-c cocoa introspection objective-c-runtime

如何在运行时找出一个类是否覆盖其超类的方法?

例如,我想知道某个类是否拥有$ltisEqual:的实现,而不是依赖于超类。

1 个答案:

答案 0 :(得分:4)

您只需要获取方法列表,然后查找所需的方法:

#import <objc/runtime.h>

BOOL hasMethod(Class cls, SEL sel) {
    unsigned int methodCount;
    Method *methods = class_copyMethodList(cls, &methodCount);

    BOOL result = NO;
    for (unsigned int i = 0; i < methodCount; ++i) {
        if (method_getName(methods[i]) == sel) {
            result = YES;
            break;
        }
    }

    free(methods);
    return result;
}

class_copyMethodList只返回直接在相关类上定义的方法,而不是超类,所以这应该是你的意思。

如果您需要课程方法,请使用class_copyMethodList(object_getClass(cls), &count)