青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

羅朝輝(飄飄白云)

關(guān)注嵌入式操作系統(tǒng),移動平臺,圖形開發(fā)。-->加微博 ^_^

  C++博客 :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
  85 隨筆 :: 0 文章 :: 169 評論 :: 0 Trackbacks
[Cocoa]深入淺出Cocoa之 Method Swizzling
羅朝輝(http://www.shnenglu.com/kesalin)
CC許可,轉(zhuǎn)載請注明出處

在前文深入淺出Cocoa之消息中,我簡要介紹了ObjC 中消息的基本情況,包括SEL查找,緩存以及消息轉(zhuǎn)發(fā)等。在本文中,我要介紹一個很有趣的技術(shù),Method swizzling,通過這個手法,我們可以動態(tài)修改方法的實現(xiàn),從而達到修改類行為的目的。當然,還有其他辦法(如 ClassPosing,Category)也可以達到這個目的。ClassPosing 是針對類級別的,是重量級的手法,Category 也差不多,比較重量級,此外 Category 還無法避免下面的遞歸死循環(huán)(如果你的代碼出現(xiàn)了如下形式的遞歸調(diào)用,應(yīng)該考慮一下你的設(shè)計,而不是使用在這里介紹的 Method Swizzling 手法,:))。

// Bar
//
@implementation Bar

- (void) testMethod
{
    NSLog(@" >> Bar testMethod");
}

@end

// Bar(BarCategory)
//
@implementation Bar(BarCategory)

- (void) altRecursionMethod
{
    NSLog(@" >> Bar(BarCategory) recursionMethod");
    [self altRecursionMethod];
}

@end

在前文深入淺出Cocoa之消息中提到,ObjC 中的類(class)和實例(instance)都是對象,類對象有自己的類方法列表,實例對象有自己的實例方法列表,這些方法列表(struct objc_method_list)是存儲在 struct objc_class 中的。每個方法列表存儲近似 SEL:Method 的對,Method 是一個對象,包含方法的具體實現(xiàn) impl。由此可知,我們只需要修改 SEL 對應(yīng)的 Method 的 impl 既可以達到修改消息行為的目的。下面來看代碼:

void PerformSwizzle(Class aClass, SEL orig_sel, SEL alt_sel, BOOL forInstance)
{
    // First, make sure the class isn't nil
    if (aClass != nil) {
        Method orig_method = nil, alt_method = nil;

        // Next, look for the methods
        if (forInstance) {
            orig_method = class_getInstanceMethod(aClass, orig_sel);
            alt_method = class_getInstanceMethod(aClass, alt_sel);
        } else {
            orig_method = class_getClassMethod(aClass, orig_sel);
            alt_method = class_getClassMethod(aClass, alt_sel);
        }

        // If both are found, swizzle them
        if ((orig_method != nil) && (alt_method != nil)) {
            IMP temp;

            temp = orig_method->method_imp;
            orig_method->method_imp = alt_method->method_imp;
            alt_method->method_imp = temp;
        } else {
#if DEBUG
            NSLog(@"PerformSwizzle Error: Original %@, Alternate %@",(orig_method == nil)?@" not found":@" found",(alt_method == nil)?@" not found":@" found");
#endif
        }
    } else {
#if DEBUG
        NSLog(@"PerformSwizzle Error: Class not found");
#endif
    }
}

void MethodSwizzle(Class aClass, SEL orig_sel, SEL alt_sel)
{
    PerformSwizzle(aClass, orig_sel, alt_sel, YES);
}

void ClassMethodSwizzle(Class aClass, SEL orig_sel, SEL alt_sel)
{
    PerformSwizzle(aClass, orig_sel, alt_sel, NO);
}

讓我們來分析上面代碼:
1,首先,區(qū)分類方法和實例方法;
2,取得 SEL 對應(yīng)的 Method;
3,修改 Method 的 impl,在這里是通過交換實現(xiàn)的。

上面的代碼是可以工作的,但還不夠完善。Apple 10.5 提供了交換 Method 實現(xiàn)的 API: method_exchangeImplementations 。下面我們使用這個新 API,并以 NSObject category的形式給出新的實現(xiàn)方式:

#if TARGET_OS_IPHONE
#import <objc/runtime.h>
#import <objc/message.h>
#else
#import <objc/objc-class.h>
#endif

// NSObject (MethodSwizzlingCategory)
//
@interface NSObject (MethodSwizzlingCategory)

+ (BOOL)swizzleMethod:(SEL)origSel withMethod:(SEL)altSel;
+ (BOOL)swizzleClassMethod:(SEL)origSel withClassMethod:(SEL)altSel;

@end

@implementation NSObject (MethodSwizzlingCategory)

+ (BOOL)swizzleMethod:(SEL)origSel withMethod:(SEL)altSel
{
    Method origMethod = class_getInstanceMethod(self, origSel);
    if (!origSel) {
        NSLog(@"original method %@ not found for class %@", NSStringFromSelector(origSel), [self class]);
        return NO;
    }
    
    Method altMethod = class_getInstanceMethod(self, altSel);
    if (!altMethod) {
        NSLog(@"original method %@ not found for class %@", NSStringFromSelector(altSel), [self class]);
        return NO;
    }
    
    class_addMethod(self,
                    origSel,
                    class_getMethodImplementation(self, origSel),
                    method_getTypeEncoding(origMethod));
    class_addMethod(self,
                    altSel,
                    class_getMethodImplementation(self, altSel),
                    method_getTypeEncoding(altMethod));
    
    method_exchangeImplementations(class_getInstanceMethod(self, origSel), class_getInstanceMethod(self, altSel));

    return YES;
}

+ (BOOL)swizzleClassMethod:(SEL)origSel withClassMethod:(SEL)altSel
{
    Class c = object_getClass((id)self);
    return [c swizzleMethod:origSel withMethod:altSel];
}

@end

代碼就不用多解釋了,下面我們來看如何使用。先看輔助類Foo:
Foo.h
//
//  Foo.h
//  MethodSwizzling
//
//  Created by LuoZhaohui on 1/5/12.
//  Copyright (c) 2012 http://www.shnenglu.com/kesalin/. All rights reserved.
//

#import <Foundation/Foundation.h>

// Foo
//
@interface Foo : NSObject

- (void) testMethod;
- (void) baseMethod;
- (void) recursionMethod;

@end

// Bar
//
@interface Bar : Foo

- (void) testMethod;

@end

// Bar(BarCategory)
//
@interface Bar(BarCategory)

- (void) altTestMethod;
- (void) altBaseMethod;
- (void) altRecursionMethod;

@end

Foo.m
//
//  Foo.m
//  MethodSwizzling
//
//  Created by LuoZhaohui on 1/5/12.
//  Copyright (c) 2012 . All rights reserved.
//

#import "Foo.h"

// Foo
//
@implementation Foo

- (void) testMethod
{
    NSLog(@" >> Foo testMethod");
}

- (void) baseMethod
{
    NSLog(@" >> Foo baseMethod");
}

- (void) recursionMethod
{
    NSLog(@" >> Foo recursionMethod");
}

@end

// Bar
//
@implementation Bar

- (void) testMethod
{
    NSLog(@" >> Bar testMethod");
}

@end

// Bar(BarCategory)
//
@implementation Bar(BarCategory)

- (void) altTestMethod
{
    NSLog(@" >> Bar(BarCategory) altTestMethod");
}

- (void) altBaseMethod
{
    NSLog(@" >> Bar(BarCategory) altBaseMethod");
}

- (void) altRecursionMethod
{
    NSLog(@" >> Bar(BarCategory) recursionMethod");
    [self altRecursionMethod];
}

@end

下面是具體的使用示例:
// Main
//
int main (int argc, const char * argv[])
{
    @autoreleasepool
    {
        Foo * foo = [[[Foo alloc] init] autorelease];
        Bar * bar = [[[Bar alloc] init] autorelease];
        
        NSLog(@"========= Method Swizzling test 1 =========");
        
        NSLog(@" Step 1");
        [foo testMethod];
        [bar testMethod];
        [bar altTestMethod];
        
        NSLog(@" Step 2");
        [Bar swizzleMethod:@selector(testMethod) withMethod:@selector(altTestMethod)];
        [foo testMethod];
        [bar testMethod];
        [bar altTestMethod];
        
        NSLog(@"========= Method Swizzling test 2 =========");
        NSLog(@" Step 1");
        [foo baseMethod];
        [bar baseMethod];
        [bar altBaseMethod];
        
        NSLog(@" Step 2");
        [Bar swizzleMethod:@selector(baseMethod) withMethod:@selector(altBaseMethod)];
        [foo baseMethod];
        [bar baseMethod];
        [bar altBaseMethod];
        
        NSLog(@"========= Method Swizzling test 3 =========");
        [Bar swizzleMethod:@selector(recursionMethod) withMethod:@selector(altRecursionMethod)];
        [bar recursionMethod];
    }

    return 0;
}

輸出結(jié)果為下表。注意,test 3 中調(diào)用了遞歸調(diào)用“自己”的方法,你能理解為什么沒有出現(xiàn)死循環(huán)么?
========= Method Swizzling test 1 =========
  Step 1
  >> Foo testMethod
  >> Bar testMethod
  >> Bar(BarCategory) altTestMethod
  Step 2
  >> Foo testMethod
  >> Bar(BarCategory) altTestMethod
  >> Bar testMethod
========= Method Swizzling test 2 =========
  Step 1
  >> Foo baseMethod
  >> Foo baseMethod
  >> Bar(BarCategory) altBaseMethod
  Step 2
  >> Foo baseMethod
  >> Bar(BarCategory) altBaseMethod
  >> Foo baseMethod
 ========= Method Swizzling test 3 =========
  >> Bar(BarCategory) recursionMethod
  >> Foo recursionMethod

test3 解釋:在函數(shù)體 {} 之間的部分是真正的 IMP,而在這之前的是 SEL。通常情況下,SEL 是與 IMP 匹配的,但在 swizzling 之后,情況就不同了。下圖就是調(diào)用的時序圖。


rentzsch 寫了一個完善的開源類 jrswizzle 來處理 Method Swizzling,如果你在工程中使用到 Method Swizzling 手法,應(yīng)該優(yōu)先使用這個類庫,:)。

Refference:
MethodSwizzling:http://www.cocoadev.com/index.pl?ExtendingClasses
jrswizzle:https://github.com/rentzsch/jrswizzle

posted on 2012-01-05 17:02 羅朝輝 閱讀(2548) 評論(4)  編輯 收藏 引用 所屬分類: 移動開發(fā)

評論

# re: [Cocoa]深入淺出Cocoa之 Method Swizzling 2012-01-05 17:29 marvin
你的博不錯,加油  回復(fù)  更多評論
  

# re: [Cocoa]深入淺出Cocoa之 Method Swizzling 2012-01-05 20:09 羅朝輝
@marvin

多謝鼓勵,一起加油~  回復(fù)  更多評論
  

# re: [Cocoa]深入淺出Cocoa之 Method Swizzling 2012-01-06 15:47 marvin
@羅朝輝
我的博
http://cnblogs.com/chrome
  回復(fù)  更多評論
  

# re: [Cocoa]深入淺出Cocoa之 Method Swizzling 2012-08-08 22:31 拉拉
Method 定義找不到啊
  回復(fù)  更多評論
  

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲经典三级| 亚洲欧洲视频| 国产欧美短视频| 夜夜嗨av一区二区三区中文字幕| 欧美一区二区三区播放老司机| 亚洲国产91| 久久国产精品久久w女人spa| 国产精品久久午夜| 宅男噜噜噜66一区二区 | 女女同性女同一区二区三区91| 一区二区三区黄色| 欧美精品一区二区三区久久久竹菊| 在线观看一区| 免费久久99精品国产自| 久久精品网址| 在线免费不卡视频| 欧美激情一区二区三区全黄| 美女免费视频一区| 99爱精品视频| 一区二区国产精品| 国产精品成人免费精品自在线观看| 亚洲天堂av综合网| 一区二区三区高清| 国产模特精品视频久久久久| 久久精品女人的天堂av| 欧美一级淫片播放口| 国外成人性视频| 免费亚洲婷婷| 免费看亚洲片| 99re热这里只有精品免费视频| 91久久精品国产91久久性色| 欧美日韩免费| 午夜天堂精品久久久久 | 黄色在线一区| 欧美成人亚洲成人| 欧美国产日韩一二三区| 亚洲图片欧美一区| 小嫩嫩精品导航| 亚洲丰满在线| 一本一本久久a久久精品综合麻豆| 国产精品每日更新在线播放网址| 久久精品国产99国产精品澳门| 久久久久久久精| 99国产精品久久久久老师| 亚洲视频久久| 在线精品高清中文字幕| 99视频一区二区三区| 国内精品久久久久影院薰衣草| 欧美成人在线免费观看| 欧美视频一二三区| 久久人人看视频| 欧美日本中文| 免费不卡在线观看| 欧美亚洲成人网| 欧美91视频| 国产精品日韩| 亚洲人成人99网站| 国内成+人亚洲+欧美+综合在线| 亚洲激情午夜| 国内自拍视频一区二区三区| 99ri日韩精品视频| 亚洲中无吗在线| 亚洲精品久久久一区二区三区| 亚洲欧美国产精品桃花| 亚洲激情网站免费观看| 欧美伊人影院| 午夜久久久久久| 欧美—级高清免费播放| 久久天堂国产精品| 国产精品亚洲不卡a| 99综合视频| 一区二区三区精品在线| 狂野欧美性猛交xxxx巴西| 亚洲欧美日韩综合aⅴ视频| 欧美高清成人| 欧美激情欧美狂野欧美精品| 国产一区二区成人| 亚洲女同性videos| 亚洲综合三区| 欧美调教视频| 99国产成+人+综合+亚洲欧美| 亚洲黄色片网站| 你懂的视频一区二区| 免费日韩成人| 一区二区在线视频观看| 亚洲午夜精品久久久久久浪潮 | 亚洲午夜视频在线观看| 欧美+亚洲+精品+三区| 久久久夜夜夜| 国产亚洲网站| 久久成人免费| 久久久久久一区| 国产一区在线免费观看| 欧美亚洲视频在线看网址| 欧美一区二区三区四区视频| 国产精品毛片va一区二区三区 | 欧美亚洲一区二区三区| 亚洲男人第一av网站| 欧美日韩一区二区国产| 日韩视频在线永久播放| 亚洲一二三级电影| 国产精品国产馆在线真实露脸 | 国自产拍偷拍福利精品免费一| 亚洲综合欧美| 久久精品中文字幕一区二区三区| 国产精品福利影院| 亚洲特黄一级片| 欧美一区二区三区在线看| 国产精品美女久久久久av超清| 中文欧美在线视频| 欧美一级视频| 韩国亚洲精品| 免费日韩av片| 日韩午夜免费视频| 亚洲欧美国产高清va在线播| 国产乱码精品| 久久夜色精品国产| 亚洲国内自拍| 亚洲欧美日产图| 激情久久婷婷| 欧美精品乱人伦久久久久久| 国产精品99久久久久久久久| 久久久久久电影| 日韩一二三区视频| 午夜天堂精品久久久久| 久久一区视频| 99精品国产在热久久下载| 国产精品亚洲成人| 久久精品国产成人| 欧美激情1区2区| 亚洲欧美清纯在线制服| 在线观看久久av| 欧美日韩综合| 蜜桃av久久久亚洲精品| 亚洲图片在线观看| 欧美国产另类| 欧美一级在线亚洲天堂| 亚洲国产高清在线观看视频| 欧美三区在线视频| 久久久亚洲欧洲日产国码αv| 亚洲精品美女久久7777777| 性欧美1819性猛交| 亚洲精品在线观看免费| 国产欧美日韩一区| 欧美日韩1区2区3区| 久久久久久日产精品| 一区二区三区欧美日韩| 欧美黄色小视频| 久久久久看片| 亚洲欧美中文字幕| 日韩视频永久免费| 有坂深雪在线一区| 国产麻豆午夜三级精品| 欧美另类综合| 欧美xx69| 久久精品免费播放| 午夜久久久久久久久久一区二区| 日韩视频一区二区三区| 亚洲国产视频一区二区| 免费永久网站黄欧美| 欧美在线播放| 亚洲一区二区三区四区在线观看 | 国产精品一区二区三区四区| 欧美国产一区在线| 麻豆久久婷婷| 老巨人导航500精品| 久久精品盗摄| 久久精品成人一区二区三区| 亚洲欧美一区二区视频| 亚洲欧美成人一区二区三区| 亚洲无亚洲人成网站77777| 日韩网站在线| 99亚洲精品| 日韩午夜免费视频| 99视频精品免费观看| 99精品视频免费| 亚洲精品小视频| 亚洲激情午夜| 亚洲精品视频免费观看| 亚洲精品一区二区三区在线观看 | 欧美成人xxx| 欧美成人免费一级人片100| 麻豆成人综合网| 久久综合久久综合久久| 狂野欧美一区| 欧美成人精品1314www| 欧美国产日韩亚洲一区| 亚洲成色777777女色窝| 欧美成人黑人xx视频免费观看| 蜜月aⅴ免费一区二区三区| 欧美mv日韩mv国产网站| 亚洲第一区色| 一区二区精品| 亚洲欧美电影在线观看| 久久精品一区二区三区中文字幕| 蜜桃av一区| 亚洲高清一二三区| 亚洲乱码国产乱码精品精| 一区二区三区你懂的| 欧美在线视频一区|