前言
想要通過runtime發(fā)送消息骚揍,就必須要掌握runtime如何發(fā)送消息,是調(diào)用哪個函數(shù)独泞?又是如何調(diào)用的呐矾?本篇文章只是記錄筆者學習objc_msgSend
函數(shù)的使用筆記,若有誤解之處懦砂,還請指出蜒犯。謝謝!
objc_msgSend
我們先來看看官方函數(shù)objc_msgSend
的聲明:
/* Basic Messaging Primitives
*
* On some architectures, use objc_msgSend_stret for some struct return types.
* On some architectures, use objc_msgSend_fpret for some float return types.
* On some architectures, use objc_msgSend_fp2ret for some float return types.
*
* These functions must be cast to an appropriate function pointer type
* before being called.
*/
void objc_msgSend(void /* id self, SEL op, ... */ )
從這個函數(shù)的注釋可以看出來了荞膘,這是個最基本的用于發(fā)送消息的函數(shù)罚随。另外,這個函數(shù)并不能發(fā)送所有類型的消息羽资,只能發(fā)送基本的消息淘菩。比如,在一些處理器上屠升,我們必須使用objc_msgSend_stret
來發(fā)送返回值類型為結(jié)構(gòu)體的消息潮改,使用objc_msgSend_fpret
來發(fā)送返回值類型為浮點類型的消息,而又在一些處理器上腹暖,還得使用objc_msgSend_fp2ret
來發(fā)送返回值類型為浮點類型的消息汇在。
最關(guān)鍵的一點:無論何時,要調(diào)用objc_msgSend
函數(shù)脏答,必須要將函數(shù)強制轉(zhuǎn)換成合適的函數(shù)指針類型才能調(diào)用糕殉。
從objc_msgSend
函數(shù)的聲明來看,它應(yīng)該是不帶返回值的殖告,但是我們在使用中卻可以強制轉(zhuǎn)換類型阿蝶,以便接收返回值。另外黄绩,它的參數(shù)列表是可以任意多個的羡洁,前提也是要強制函數(shù)指針類型。
學習使用
我們建立一個類宝与,就專門學習如何運用objc_msgSend
函數(shù)來發(fā)送消息焚廊。我們建立了一個GGMsgSend
類來學習冶匹。
1.創(chuàng)建并初始化對象
我們一直以來都是使用類似這樣的[[GGMsgSend alloc] init]
來創(chuàng)建并初始化對象吧,其實在編譯時咆瘟,這一行代碼也會轉(zhuǎn)換成類似如下的代碼:
// 1.創(chuàng)建對象
GGMsgSend *msg = ((GGMsgSend * (*)(id, SEL))objc_msgSend)((id)[GGMsgSend class], @selector(alloc));
// 2.初始化對象
msg = ((GGMsgSend * (*)(id, SEL))objc_msgSend)((id)msg, @selector(init));
要發(fā)送消息給msg
對象嚼隘,并將創(chuàng)建的對象返回,那么我們需要強轉(zhuǎn)函數(shù)指針類型袒餐。(GGMsgSend * (*)(id, SEL)
這是帶一個對象指針返回值和兩個參數(shù)的函數(shù)指針飞蛹,這樣就可以調(diào)用了。
2.發(fā)送無參數(shù)無返回值消息
我們先定義一個方法:
- (void)noArgumentsAndNoReturnValue {
NSLog(@"%s was called, and it has no arguments and return value", __FUNCTION__);
}
然后灸眼,我們發(fā)送消息卧檐,測試一下結(jié)果。
// 2.調(diào)用無參數(shù)無返回值方法
((void (*)(id, SEL))objc_msgSend)((id)msg, @selector(noArgumentsAndNoReturnValue));
結(jié)果如下焰宣,說明成功地接收到消息并處理了:
-[GGMsgSend noArgumentsAndNoReturnValue] was called, and it has no arguments and return value
3.帶參數(shù)不帶返回值消息
我們定義一個方法只帶參數(shù)霉囚,不帶返回值:
- (void)hasArguments:(NSString *)arg {
NSLog(@"%s was called, and argument is %@", __FUNCTION__, arg);
}
然后嘗試發(fā)送消息試試:
// 3.調(diào)用帶一個參數(shù)但無返回值的方法
((void (*)(id, SEL, NSString *))objc_msgSend)((id)msg, @selector(hasArguments:), @"帶一個參數(shù),但無返回值");
同樣匕积,我們也是需要強轉(zhuǎn)函數(shù)指針類型盈罐,否則會報錯的。其實闪唆,只有調(diào)用runtime函數(shù)來發(fā)送消息盅粪,幾乎都需要強轉(zhuǎn)函數(shù)指針類型為合適的類型。
其打印結(jié)果說明成功接收到消息并處理了:
-[GGMsgSend hasArguments:] was called, and argument is 帶一個參數(shù)悄蕾,但無返回值
4.帶返回值不帶參數(shù)消息
當消息帶有返回值時票顾,我們?nèi)绾谓邮漳兀课覀兿嚷暶饕粋€方法帆调,讓它帶有返回值奠骄,但是不帶參數(shù):
- (NSString *)noArgumentsButReturnValue {
NSLog(@"%s was called, and return value is %@", __FUNCTION__, @"不帶參數(shù),但是帶有返回值");
return @"不帶參數(shù)贷帮,但是帶有返回值";
}
然后發(fā)送消息戚揭,并接收返回值:
// 4.調(diào)用帶返回值,但是不帶參數(shù)
NSString *retValue = ((NSString * (*)(id, SEL))objc_msgSend)((id)msg, @selector(noArgumentsButReturnValue));
NSLog(@"5. 返回值為:%@", retValue);
打印結(jié)果說明成功地發(fā)送了消息并得到處理撵枢,且成功地獲取到了返回值:
-[GGMsgSend noArgumentsButReturnValue] was called, and return value is 不帶參數(shù),但是帶有返回值
5.帶參數(shù)帶返回值的消息
定義一個帶參數(shù)帶普通返回值的方法:
- (int)hasArguments:(NSString *)arg andReturnValue:(int)arg1 {
NSLog(@"%s was called, and argument is %@, return value is %d", __FUNCTION__, arg, arg1);
return arg1;
}
發(fā)送消息精居,并接收返回值:
// 6.帶參數(shù)帶返回值
int returnValue = ((int (*)(id, SEL, NSString *, int))
objc_msgSend)((id)msg,
@selector(hasArguments:andReturnValue:),
@"參數(shù)1",
2016);
NSLog(@"6. return value is %d", returnValue);
其結(jié)果如下锄禽,說明調(diào)用成功,參數(shù)也傳過去了靴姿,返回值也接收到了:
-[GGMsgSend hasArguments:andReturnValue:] was called, and argument is 參數(shù)1, return value is 2016
6. return value is 2016
6.動態(tài)添加方法再調(diào)用
我們聲明一個C語言函數(shù):
// C函數(shù)
int cStyleFunc(id receiver, SEL sel, const void *arg1, const void *arg2) {
NSLog(@"%s was called, arg1 is %@, and arg2 is %@",
__FUNCTION__,
[NSString stringWithUTF8String:arg1],
[NSString stringWithUTF8String:arg1]);
return 1;
}
這個函數(shù)并不屬性對象方法沃但,因此我們不能直接調(diào)用,但是我們可以動態(tài)地添加方法到對象中佛吓,然后再發(fā)送消息:
int returnValue = ((int (*)(id, SEL, NSString *, int))
objc_msgSend)(msg,
@selector(hasArguments:andReturnValue:),
@"參數(shù)1",
2016);
NSLog(@"6. return value is %d", returnValue);
NSLog(@"%s", @encode(const void *));
// 7.動態(tài)添加方法宵晚,然后調(diào)用C函數(shù)
class_addMethod(msg.class, NSSelectorFromString(@"cStyleFunc"), (IMP)cStyleFunc, "i@:r^vr^v");
returnValue = ((int (*)(id, SEL, const void *, const void *))
objc_msgSend)((id)msg,
NSSelectorFromString(@"cStyleFunc"),
"參數(shù)1",
"參數(shù)2");
提示:"v@:rvrv"垂攘,其中i
代表返回類型int
,@代表參數(shù)接收者淤刃,:代表SEL晒他,r^v是const void *
7.帶浮點返回值的消息
對于發(fā)送帶浮點返回值類型的消息,我們可以使用objc_msgSend_fpret
也可以使用objc_msgSend
逸贾。不過這兩個函數(shù)返回結(jié)果是一樣的陨仅。筆者并不是很清楚,這兩個函數(shù)的主要區(qū)別是什么铝侵。根據(jù)注釋說明灼伤,只是說有一些處理器上,需要使用objc_msgSend_fpret
來發(fā)送帶浮點返回值類型的消息咪鲜。
float retFloatValue = ((float (*)(id, SEL))objc_msgSend_fpret)((id)msg, @selector(returnFloatType));
NSLog(@"%f", retFloatValue);
retFloatValue = ((float (*)(id, SEL))objc_msgSend)((id)msg, @selector(returnFloatType));
NSLog(@"%f", retFloatValue);
8.帶結(jié)構(gòu)體返回值的消息
對于返回值類型為結(jié)構(gòu)體的消息狐赡,我們必須使用objc_msgSend_stret
而不能直接使用objc_msgSend
函數(shù),否則會crash
:
// 9.返回結(jié)構(gòu)體時疟丙,不能使用objc_msgSend颖侄,而是要使用objc_msgSend_stret,否則會crash
CGRect frame = ((CGRect (*)(id, SEL))objc_msgSend_stret)((id)msg, @selector(returnTypeIsStruct));
NSLog(@"9. return value is %@", NSStringFromCGRect(frame));