iOS - NSInvocation

圖片源自網(wǎng)絡(luò)

NSMethodSignature

NSMethodSignature:“方法簽名”腮考;官方定義該類為對方法的參數(shù)雇毫、返回類似進行封裝,協(xié)同NSInvocation實現(xiàn)消息轉(zhuǎn)發(fā)踩蔚。

@interface NSMethodSignature : NSObject {
@private
    void *_private;
    void *_reserved[6];
}

// 通過Objective-C類型編碼(Objective-C Type Encodings)創(chuàng)建一個NSMethodSignature對象
+ (nullable NSMethodSignature *)signatureWithObjCTypes:(const char *)types;

// 方法參數(shù)個數(shù)
@property (readonly) NSUInteger numberOfArguments;

// 獲取參數(shù)類型
- (const char *)getArgumentTypeAtIndex:(NSUInteger)idx NS_RETURNS_INNER_POINTER;

// 獲取方法的長度
@property (readonly) NSUInteger frameLength;

// 是否是單向
- (BOOL)isOneway;

// 獲取方法返回值類型
@property (readonly) const char *methodReturnType NS_RETURNS_INNER_POINTER;

// 獲取方法返回值的長度棚放,大于0表示有返回值
@property (readonly) NSUInteger methodReturnLength;

@end

NSInvocation

  • NSInvocation是一個消息調(diào)用類,它包含了所有OC消息的成分:target馅闽、selector飘蚯、參數(shù)以及返回值。
  • NSInvocation可以將消息轉(zhuǎn)換成一個對象福也,消息的每一個參數(shù)能夠直接設(shè)定局骤,而且當(dāng)一個NSInvocation對象調(diào)度時返回值是可以自己設(shè)定的。
  • 一個NSInvocation對象能夠重復(fù)的調(diào)度不同的目標(biāo)(target)暴凑,而且它的selector也能夠設(shè)置為另外一個方法簽名峦甩。
  • NSInvocation遵守NSCoding協(xié)議,但是僅支持NSPortCoder編碼现喳,不支持歸檔型操作凯傲。
@interface NSInvocation : NSObject {
@private
    __strong void *_frame;
    __strong void *_retdata;
    id _signature;
    id _container;
    uint8_t _retainedArgs;
    uint8_t _reserved[15];
}

// 通過NSMethodSignature對象創(chuàng)建NSInvocation對象,NSMethodSignature為方法簽名類
+ (NSInvocation *)invocationWithMethodSignature:(NSMethodSignature *)sig;

// 獲取NSMethodSignature對象
@property (readonly, retain) NSMethodSignature *methodSignature;

// 保留參數(shù)嗦篱,它會將傳入的所有參數(shù)以及target都retain一遍
- (void)retainArguments;

// 判斷參數(shù)是否還存在
// 調(diào)用retainArguments之前冰单,值為NO,調(diào)用之后值為YES
@property (readonly) BOOL argumentsRetained;

// 設(shè)置消息調(diào)用者默色,注意:target最好不要是局部變量
@property (nullable, assign) id target;

// 設(shè)置要調(diào)用的消息
@property SEL selector;

// 獲取消息返回值
- (void)getReturnValue:(void *)retLoc;

// 設(shè)置消息返回值
- (void)setReturnValue:(void *)retLoc;

// 獲取消息參數(shù)
- (void)getArgument:(void *)argumentLocation atIndex:(NSInteger)idx;

// 設(shè)置消息參數(shù)
- (void)setArgument:(void *)argumentLocation atIndex:(NSInteger)idx;

// 發(fā)送消息球凰,即執(zhí)行方法
- (void)invoke;

// target發(fā)送消息,即target執(zhí)行方法
- (void)invokeWithTarget:(id)target;

@end

NSInvocation的使用

使用步驟

  1. 根據(jù)方法創(chuàng)建簽名對象(NSMethodSignature對象)

  2. 根據(jù)簽名對象創(chuàng)建調(diào)用對象(NSInvocation對象)

  3. 設(shè)置調(diào)用對象(NSInvocation對象)的相關(guān)信息

  4. 調(diào)用方法

  5. 獲取方法返回值

具體實現(xiàn)

  • 無參無返回值
- (void)invocation1 {

    // 1. 根據(jù)方法創(chuàng)建簽名對象sig
    NSMethodSignature *sig = [[self class] instanceMethodSignatureForSelector:@selector(method)];

    // 2. 根據(jù)簽名對象創(chuàng)建調(diào)用對象invocation
    NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:sig];

    // 3. 設(shè)置調(diào)用對象的相關(guān)信息
    // 注意:target不要設(shè)置成局部變量
    invocation.target = self;
    invocation.selector = @selector(method);

    //4. 調(diào)用方法
    [invocation invoke];

}

- (void)method {

    NSLog(@"無參無返回值");
}
  • 有參無返回值
- (void)invocation2 {

    // 1. 根據(jù)方法創(chuàng)建簽名對象sig
    NSMethodSignature *sig = [[self class] instanceMethodSignatureForSelector:@selector(methodWithArg1:arg2:)];

    // 2. 根據(jù)簽名對象創(chuàng)建調(diào)用對象invocation
    NSInvocation *invocation =[NSInvocation invocationWithMethodSignature:sig];

    // 3. 設(shè)置調(diào)用對象的相關(guān)信息
    invocation.target = self;
    invocation.selector = @selector(methodWithArg1:arg2:);
    NSString *name = @"SJM";
    int age = 18;
    // 參數(shù)必須從第2個索引開始腿宰,因為前兩個已經(jīng)被target和selector使用
    [invocation setArgument:&name atIndex:2];
    [invocation setArgument:&age atIndex:3];

    // 4. 調(diào)用方法
    [invocation invoke];

}

- (void)methodWithArg1:(NSString *)arg1 arg2:(int)arg2 {

    NSLog(@"我叫%@呕诉,今年%d歲。", arg1, arg2);
}
  • 有參有返回值
- (void)invocation3 {

    // 1. 根據(jù)方法創(chuàng)建簽名對象sig
    NSMethodSignature *sig = [[self class] instanceMethodSignatureForSelector:@selector(methodWithArg1:arg2:arg3:)];

    // 2. 根據(jù)簽名對象創(chuàng)建調(diào)用對象invocation
    NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:sig];

    // 3. 設(shè)置調(diào)用對象的相關(guān)信息
    invocation.target = self;
    invocation.selector = @selector(methodWithArg1:arg2:arg3:);
    int value1 = 111;
    int value2 = 999;
    int value3 = 666;
    [invocation setArgument:&value1 atIndex:2];
    [invocation setArgument:&value2 atIndex:3];
    [invocation setArgument:&value3 atIndex:4];

    // 4. 調(diào)用方法
    [invocation invoke];

    // 5. 獲取方法返回值
    NSNumber *num = nil;
    [invocation getReturnValue:&num];
    NSLog(@"最大數(shù)為:%@",num);

}

- (NSNumber *)methodWithArg1:(int)arg1 arg2:(int)arg2 arg3:(int)arg3 {

    int max1 = MAX(arg1, arg2);
    int max2 = MAX(arg2, arg3);

    // 返回最大數(shù)
    return @(MAX(max1, max2));
}
  • NSInvocation的其他屬性與方法
- (void)invocation4 {


    // 1. 根據(jù)方法創(chuàng)建一個簽名對象sig
    NSMethodSignature *sig = [[self class] instanceMethodSignatureForSelector:@selector(methodWithArg1:arg2:arg3:)];

    // 2. 根據(jù)簽名對象創(chuàng)建調(diào)用對象invocation
    NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:sig];

    // 3. 設(shè)置調(diào)用對象的相關(guān)信息
    invocation.target = self;
    invocation.selector = @selector(methodWithArg1:arg2:arg3:);
    int value1 = 111;
    int value2 = 999;
    int value3 = 666;
    [invocation setArgument:&value1 atIndex:2];
    [invocation setArgument:&value2 atIndex:3];
    [invocation setArgument:&value3 atIndex:4];

    // 4. 調(diào)用方法吃度,也可以使用invokeWithTarget:方法指定調(diào)用者
    [invocation invoke];


    // 5. 獲取方法返回值
    NSNumber *num = nil;
    [invocation getReturnValue:&num];
    NSLog(@"最大數(shù)為:%@",num);

/* -------------------------------分隔線---------------------------------- */

    // NSInvocation的其他屬性

    // argumentsRetained屬性是判斷參數(shù)是否還存在
    // 調(diào)用retainArguments之前甩挫,值為NO,調(diào)用之后值為YES
    NSLog(@"%@參數(shù)保留", (invocation.argumentsRetained ? @"有" : @"沒有"));
    [invocation retainArguments];
    NSLog(@"%@參數(shù)保留", (invocation.argumentsRetained ? @"有" : @"沒有"));

    // 獲取參數(shù)值
    if (invocation.argumentsRetained) {
        int arg;
        [invocation getArgument:&arg atIndex:4];
        NSLog(@"Argument ---- %d",arg);
    }

    // 設(shè)置方法返回值
    NSNumber *value = @987;
    [invocation setReturnValue:&value];
    [invocation getReturnValue:&value];
    NSLog(@"ReturnValue ---- %@",value);


    // 關(guān)于NSMethodSignature對象
    NSLog(@"-------------關(guān)于NSMethodSignature對象---------------");
    [self methodSignature:invocation];

}

- (NSNumber *)methodWithArg1:(int)arg1 arg2:(int)arg2 arg3:(int)arg3 {

    int max1 = MAX(arg1, arg2);
    int max2 = MAX(arg2, arg3);

    // 返回最大數(shù)
    return @(MAX(max1, max2));
}

// NSMethodSignature的使用
- (void)methodSignature:(NSInvocation *)invocation {

    // 獲取方法簽名對象
    NSMethodSignature *signature = invocation.methodSignature;

    // 獲取方法所占字節(jié)數(shù)
    NSUInteger frameLength = signature.frameLength;
    NSLog(@"frameLength ---- %ld",frameLength);

    // 獲取方法返回值所占字節(jié)數(shù)
    // 這里只對數(shù)值型的類型有效椿每,OC類型打印都是8字節(jié)
    NSUInteger returnLength = signature.methodReturnLength;
    NSLog(@"returnLength ---- %ld",returnLength);

    // 判斷方法是否是單向
    NSString *oneWay =  [signature isOneway] ? @"是" : @"不是";
    NSLog(@"方法%@單向", oneWay);

    // 獲取參數(shù)個數(shù)
    NSInteger count = signature.numberOfArguments;

    // 打印所有參數(shù)類型伊者,
    // 這里打印的結(jié)果是  @ : i i i  它們是Objective-C類型編碼
    // @ 表示 NSObject* 或 id 類型
    // : 表示 SEL 類型
    // i 表示 int 類型
    for (int i = 0; i < (int)count; i++) {
        const char *argTybe = [signature getArgumentTypeAtIndex:i];
        NSLog(@"參數(shù)類型 %s",argTybe);
    }

    // 獲取返回值的類型
    const char *returnType = [signature methodReturnType];
    NSLog(@"返回值的類型 %s",returnType);

}

參考

NSInvocation的基本使用

iOS之使用NSInvocation調(diào)用方法

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市间护,隨后出現(xiàn)的幾起案子亦渗,更是在濱河造成了極大的恐慌,老刑警劉巖汁尺,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件法精,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機搂蜓,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進店門狼荞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人帮碰,你說我怎么就攤上這事相味。” “怎么了殉挽?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵丰涉,是天一觀的道長。 經(jīng)常有香客問我此再,道長昔搂,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任输拇,我火速辦了婚禮,結(jié)果婚禮上贤斜,老公的妹妹穿的比我還像新娘策吠。我一直安慰自己,他們只是感情好瘩绒,可當(dāng)我...
    茶點故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布猴抹。 她就那樣靜靜地躺著,像睡著了一般锁荔。 火紅的嫁衣襯著肌膚如雪蟀给。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天阳堕,我揣著相機與錄音跋理,去河邊找鬼。 笑死恬总,一個胖子當(dāng)著我的面吹牛前普,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播壹堰,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼拭卿,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了贱纠?” 一聲冷哼從身側(cè)響起峻厚,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎谆焊,沒想到半個月后惠桃,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年刽射,在試婚紗的時候發(fā)現(xiàn)自己被綠了军拟。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,625評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡誓禁,死狀恐怖懈息,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情摹恰,我是刑警寧澤辫继,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站俗慈,受9級特大地震影響姑宽,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜闺阱,卻給世界環(huán)境...
    茶點故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一炮车、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧酣溃,春花似錦瘦穆、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至碘饼,卻和暖如春熙兔,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背艾恼。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工住涉, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蒂萎。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓秆吵,卻偏偏與公主長得像,于是被迫代替她去往敵國和親五慈。 傳聞我的和親對象是個殘疾皇子纳寂,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,492評論 2 348

推薦閱讀更多精彩內(nèi)容