2010-07-16 66 views
29

方法swizzling工程很好,例如方法。現在,我需要調整類方法。任何想法如何做到這一點?如何調整iOS上的類方法?

試過,但它不工作:

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); 
} 

回答

53

事實證明,我當時就在不遠處。這個實現適用於我:

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); 
} 
+0

嗯......比方說,我們改爲'Class cc = object_getClass((id)c)'。可以理解的是,您需要將方法添加到'cc',但爲什麼要從'cc'中使用類方法?你不是應該從'c'獲得類方法嗎?我很困惑... – Yuji 2010-07-16 19:24:02

+0

Yuhi,你說得對,我已經改變了代碼來做原始類的方法決議,而不是元類。舊的解決方案也起作用,所以我沒有真正煩惱。 – 2010-07-20 08:00:53

+0

我的不好。我打錯了object_getClass到objc_getClass中。我會在一秒鐘內刪除我的答案。 – 2014-12-01 15:00:20