溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中runtime forwardInvocation的示例分析

發(fā)布時間:2021-07-08 18:16:43 來源:億速云 閱讀:119 作者:小新 欄目:移動開發(fā)

小編給大家分享一下iOS中runtime forwardInvocation的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

 iOS runtime forwardInvocation詳解

代碼:

TestModel

- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 
  if(aSelector == @selector(testMethod)) 
  { 
    return [NSMethodSignature signatureWithObjCTypes:"v@:"]; 
  } 
  return nil; 
} 
 
 
-(void)forwardInvocation:(NSInvocation *)anInvocation 
{ 
  if (anInvocation.selector == @selector(testMethod)) 
  { 
    TestModelHelper1 *h2 = [[TestModelHelper1 alloc] init]; 
    TestModelHelper2 *h3 = [[TestModelHelper2 alloc] init]; 
    [anInvocation invokeWithTarget:h2]; 
    [anInvocation invokeWithTarget:h3]; 
  } 
}

TestModelHelper1

-(void)testMethod 
{ 
  NSLog(@"i am TestModelHelper1"); 
} 
TestModelHelper2
[objc] view plain copy
-(void)testMethod 
{ 
  NSLog(@"i am TestModelHelper2"); 
}

主調用類

TestModel *model = [[TestModel alloc] init]; 
[model testMethod];

TestModel本身沒有實現(xiàn)testMethod方法,但最終運行后,程序沒有報錯,且TestModelHelper1和TestModelHelper2的testMethod方法都被執(zhí)行了

1.forwardingTargetForSelector同為消息轉發(fā),但在實踐層面上有什么區(qū)別?何時可以考慮把消息下放到forwardInvocation階段轉發(fā)?

forwardingTargetForSelector僅支持一個對象的返回,也就是說消息只能被轉發(fā)給一個對象

forwardInvocation可以將消息同時轉發(fā)給任意多個對象

2.methodSignatureForSelector如何實現(xiàn)?

methodSignatureForSelector用于描述被轉發(fā)的消息,描述的格式要遵循以下規(guī)則點擊打開鏈接

iOS中runtime forwardInvocation的示例分析

首先,先要了解的是,每個方法都有self和_cmd兩個默認的隱藏參數(shù),self即接收消息的對象本身,_cmd即是selector選擇器,所以,描述的大概格式是:返回值@:參數(shù)。@即為self,:對應_cmd(selector).返回值和參數(shù)根據(jù)不同函數(shù)定義做具體調整。

比如下面這個函數(shù)

-(void)testMethod;

返回值為void,沒有參數(shù),按照上面的表格中的符號說明,再結合上面提到的概念,這個函數(shù)的描述即為   v@:

v代表void,@代表self(self就是個對象,所以用@),:代表_cmd(selector)

再練一個

-(NSString *)testMethod2:(NSString *)str;

描述為 @@:@

第一個@代表返回值NSString*,對象;第二個@代表self;:代表_cmd(selector);第三個@代表參數(shù)str,NSString對象類型

如果實在拿不準,不會寫,還可以簡單寫段代碼,借助method_getTypeEncoding方法去查看某個函數(shù)的描述,比如

-(void)testMethod 
{ 
  NSLog(@"i am TestModelHelper1"); 
  Method method = class_getInstanceMethod(self.class, @selector(testMethod)); 
  const char *des = method_getTypeEncoding(method); 
  NSString *desStr = [NSString stringWithCString:des encoding:NSUTF8StringEncoding]; 
  NSLog(@"%@",desStr); 
}

iOS中runtime forwardInvocation的示例分析

把數(shù)字去掉,剩下v@:,與之前我們的描述一致

-(NSString *)testMethod2:(NSString *)str 
{ 
  Method method = class_getInstanceMethod(self.class, @selector(testMethod2:)); 
  const charchar *des = method_getTypeEncoding(method); 
  NSString *desStr = [NSString stringWithCString:des encoding:NSUTF8StringEncoding]; 
  NSLog(@"%@",desStr); 
  return @""; 
}

iOS中runtime forwardInvocation的示例分析

結果是@@:@,與之前結論一致

以上是“iOS中runtime forwardInvocation的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI