C类覆盖了一种方法

这个问题在这里已经有了答案:

  • Objective-C检测类是否覆盖继承的方法2的答案

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

    #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)

    链接地址: http://www.djcxy.com/p/84569.html

    上一篇: C class overrides a method

    下一篇: Using custom JsonConverter and TypeNameHandling in Json.net