方法Swizzle在iPhone设备上

我尝试了JRSwizzle和MethodSwizzle。 他们在模拟器上编译得很好,但是当我尝试为Device(3.x)编译时会抛出一堆错误

有没有人有任何运气在iPhone上滚来滚去? 诀窍是什么?

TIA

CocoaDev wiki对这里的方法进行了广泛的讨论。 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); } 

我没有testing过这个,只是因为我认为方法调配是一个非常危险的过程,并没有必要使用它。