查看 Objective-C class 是否覆盖了方法

Find out if an Objective-C class overrides a method

我如何在运行时发现 class 是否覆盖了它的 superclass 的方法?

例如,我想知道 class 是否有自己的 isEqual:hash 实现,而不是依赖超级 class。

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

#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 仅 returns 直接在相关 class 上定义的方法,而不是超classes,所以这应该是你的意思。

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