我尝试了JRSwizzle和MethodSwizzle。它们在模拟器上编译得很好,但是当我尝试编译Device(3.x)
时会抛出一堆错误有没有人在iPhone上乱跑?什么诀窍?
TIA
答案 0 :(得分:55)
CocoaDev wiki对方法调配here进行了广泛的讨论。 Mike Ash在该页面的底部有一个相对简单的实现:
#import <objc/runtime.h>
#import <objc/message.h>
//....
void Swizzle(Class c, SEL orig, SEL new)
{
Method origMethod = class_getInstanceMethod(c, orig);
Method newMethod = class_getInstanceMethod(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);
}
我没有对此进行测试,仅仅因为我认为方法调配是一个非常危险的过程,并且还没有必要使用它。