方法调酒iPhone设备上(Method Swizzle on iPhone device)

2019-09-01 23:37发布

我都尝试JRSwizzle和MethodSwizzle。 他们搜集罚款模拟器,但抛出一堆错误,当我尝试编译设备(3.X)

有没有人有任何运气混写的iphone? 什么把戏?

TIA

Answer 1:

该CocoaDev维基上的方法进行了广泛讨论混写在这里 。 迈克水曲柳具有在该页面底部的相对简单的实现:

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

我没有测试过这一点,只是因为我认为方法混写一个极其危险的过程,并没有需要使用它。



文章来源: Method Swizzle on iPhone device