web-dev-qa-db-ja.com

iPhoneデバイスでのメソッドSwizzle

JRSwizzleとMethodSwizzleの両方を試しました。シミュレーターでは正常にコンパイルされますが、デバイス(3.x)用にコンパイルしようとするとエラーが発生します

誰かがiPhoneでスウィズルする運がありましたか?トリックは何ですか?

TIA

25
dizy

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

メソッドスウィズリングを非常に危険なプロセスと見なし、まだ使用する必要がなかったという理由だけで、これをテストしていません。

55
Brad Larson