8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

如何在 iOS 上调配类方法?

Ji_in_coding 1月前

41 0

方法交换对于实例方法非常有用。现在,我需要交换一个类方法。有什么想法吗?试过这个,但是不起作用:void SwizzleClassMethod(Class c, SEL orig, SEL new...

方法调配对于实例方法非常有用。现在,我需要调配一个类方法。有什么想法吗?

尝试了这个但是没有用:

void SwizzleClassMethod(Class c, SEL orig, SEL new) {

Method origMethod = class_getClassMethod(c, orig);
Method newMethod = class_getClassMethod(c, new);

if(class_addMethod(c, orig, method_getImplementation(newMethod), method_getTypeEncoding(newMethod)))
    class_replaceMethod(c, new, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
else
    method_exchangeImplementations(origMethod, newMethod);
}
帖子版权声明 1、本帖标题:如何在 iOS 上调配类方法?
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Ji_in_coding在本站《objective-c》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 事实证明,我离目标并不远。这个实现对我来说是有效的:

    void SwizzleClassMethod(Class c, SEL orig, SEL new) {
    
        Method origMethod = class_getClassMethod(c, orig);
        Method newMethod = class_getClassMethod(c, new);
    
        c = object_getClass((id)c);
    
        if(class_addMethod(c, orig, method_getImplementation(newMethod), method_getTypeEncoding(newMethod)))
            class_replaceMethod(c, new, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
        else
            method_exchangeImplementations(origMethod, newMethod);
    }
    
返回
作者最近主题: