方法调用的方式
在iOS开发中,直接调用方法的方式有以下两种:
- (id)performSelector:(SEL)aSelector
- 使用NSInvocation对象
performSelector比较常用,但是传递的参数有限,以下是定义
- (id)performSelector:(SEL)aSelector;
- (id)performSelector:(SEL)aSelector withObject:(id)object;
- (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2;
This method is the same as performSelector: except that you can supply two arguments for
aSelector
.aSelector
should identify a method that can take two arguments of type id. For methods with other argument types and return values, use NSInvocation.
从官方的说明可以看到,这种方式比较局限,例如只能最多传递两个参数,超过两个参数的话,官方建议使用NSInvocation对象来实现方法的直接调用。使用NSInvocation可以更加方便地更改方法调用的参数,包含直接调用iOS的私有方法,更改参数值等。
NSInvocation
NSInvocation是一个消息调用类,主要作用是存储和传递消息。它存储的信息包含了一个iOS消息全部的成分:target、selector、参数、返回值、方法签名
。
也就是说,NSInvocation可以将传统的iOS消息发送
这个过程转换成一个对象,然后执行这个对象的发送消息
的方法就可以达到performSelector的效果,NSInvocation对象包含的每一个组成部分能够直接设定(如消息target,参数之类的)。
NSInvocation创建
创建NSInvocation只能使用+ (NSInvocation *)invocationWithMethodSignature:(NSMethodSignature *)sig
方法,不能使用alloc或者init方式来创建。创建的参数是方法签名,这个从上一点就知道,NSInvocation也包含了方法的全部组成(包括方法签名),下面就说说方法签名NSMethodSignature是什么?
NSMethodSignature
方法签名 NSMethodSignature 是一个方法的返回类型
和参数类型
,不包括方法名称
。
创建NSMethodSignture主要是以下两个方法
+ (NSMethodSignature *)instanceMethodSignatureForSelector:(SEL)aSelector ;
+ (nullable NSMethodSignature *)signatureWithObjCTypes:(const char *)types;
例如如下创建一个方法签名
NSMethodSignature *signature = [NSMethodSignature signatureWithObjCTypes:"@@:*"];
其中字符串@@:*
-
@
表示返回值为id -
@:
表示方法target和sel,iOS的每个方法都有这两个隐藏参数 -
*
表示一个char*类型的参数
关于第二点@:
可以参照objc_msgSend的声明,括号里面的第一个就是id类型的target,第二个就是SEL类型的选择子,这是每个iOS方法的两个隐藏参数,如下所示
id _Nullable objc_msgSend(id _Nullable self, SEL _Nonnull op, ...)
使用@encode()可以得到某一种类型的符号编码,如下
typeEncodeMethod这个方法的符号为i@:f@
-(int)typeEncodeMethod:(float)floatValue arr:(NSArray *)arr
{
Method method = class_getInstanceMethod(self.class, @selector(typeEncodeMethod:arr:));
const char *des = method_getTypeEncoding(method);
NSString *desStr = [NSString stringWithCString:des encoding:NSUTF8StringEncoding];
NSLog(@"%@",desStr);
char *buf = @encode(NSObject *);
NSLog(@"encode: %s ", buf);
buf = @encode(float);
NSLog(@"encode: %s ", buf);
buf = @encode(NSString *);
NSLog(@"encode: %s ", buf);
NSLog(@"typeEncodeMethod");
return 0;
}
//log 输出如下
2018-11-14 16:23:05.375422+0800 CrashAvoid[6399:174637] i28@0:8f16@20
2018-11-14 16:23:05.375491+0800 CrashAvoid[6399:174637] encode: @
2018-11-14 16:23:05.375549+0800 CrashAvoid[6399:174637] encode: f
2018-11-14 16:23:05.375616+0800 CrashAvoid[6399:174637] encode: @
2018-11-14 16:23:05.375689+0800 CrashAvoid[6399:174637] typeEncodeMethod
这些符号表可以从官方里面查看
Type Encodings
使用小例子
下面是一个使用小例子,调用iOS私有方法强制横屏
- (void)interfaceOrientation:(UIInterfaceOrientation)orientation
{
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
SEL selector = NSSelectorFromString(@"setOrientation:");
NSInvocation * invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
[invocation setSelector:selector];
[invocation setTarget:[UIDevice currentDevice]];
int val = orientation;
[invocation setArgument:&val atIndex:2];
[invocation invoke];
}
}
注意以上代码[invocation setArgument:&val atIndex:2];
,index 为 2,NSInvocation的前面两个隐藏参数为(id _Nullable self, SEL _Nonnull op, ...),方法的参数从index = 2开始。
网友评论