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的使用
使用步驟
根據(jù)方法創(chuàng)建簽名對象(NSMethodSignature對象)
根據(jù)簽名對象創(chuàng)建調(diào)用對象(NSInvocation對象)
設(shè)置調(diào)用對象(NSInvocation對象)的相關(guān)信息
調(diào)用方法
獲取方法返回值
具體實現(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);
}