Runtime
栏目: Objective-C · 发布时间: 5年前
内容简介:首先,为什么说ObjC是动态语言我们看下译文如下
首先,为什么说ObjC是动态语言
我们看下 苹果官方文档 对runtime的定义
The Objective-C runtime is a runtime library that provides support for the dynamic properties of the Objective-C language, and as such is linked to by all Objective-C apps. Objective-C runtime library support functions are implemented in the shared library found at /usr/lib/libobjc.A.dylib.
译文如下
Objective-C运行时是一个运行时库,它提供对Objective-C语言的动态属性的支持,因此被所有Objective-C应用程序链接。 Objective-C运行时库支持函数在/usr/lib/libobjc.A.dylib中的共享库中实现。
在Objective-C中,消息直到运行时才绑定到方法实现。编译器将把方法调用转化为消息发送
例如如下代码
[receiver message]
将会被转化为这种调用方式
objc_msgSend(receiver, selector)
在消息需要绑定参数的时候会转化如下
objc_msgSend(receiver, selector, arg1, arg2, ...)
那么抓花为发送消息之后都做了什么呢?
[receiver message]
- 通过receiver的 isa 指针 查找它的 Class
- 查找 Class 下的 methodLists
- 如果 methodLists 没有相应的方法则递归查找 superClass 的 methodLists
- 如果在 methodLists 里面找到了 对应的 message 则 获取实现指针 imp 并执行
- 发送方法返回值
这里我们发现还缺少了一种情况,那就是递归在父类的methodlist里面也没有找到对应的实现,这个时候就会报错 unrecognized selector send to instance X
消息转发
Runtime 为这种可能提供了最后的机会,就是触发消息转发流程
- resolveClassMethod/resolveInstanceMethod ,向对象发送其无法识别的消息后会触发,在这里可以动态添加方法的实现
- forwardingTargetForSelector ,快速转发,可以把对应的消息发送给其他对象
- methodSignatureForSelector ,对方法进行签名(为完整的消息转发做准备)
- forwardInvocation ,进行完整的消息转发(包括修改实际方法,对象等)
- doesNotRecognizeSelector , 最后如果还未执行方法,就会抛出错误
Show Me The Code:
动态添加方法:
#import "AViewController.h" #import <objc/runtime.h> @interface AViewController () @end @implementation AViewController - (void)viewDidLoad { [super viewDidLoad]; [self performSelector:@selector(speak)]; } + (BOOL)resolveInstanceMethod:(SEL)sel { if (sel == @selector(speak)) { class_addMethod([self class], sel, (IMP)fakeSpeak, "v@:"); // 关于最后一个参数可以看https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtTypeEncodings.html return true; } return [super resolveInstanceMethod:sel]; } void fakeSpeak(id target, SEL _cmd){ NSLog(@"method added"); } @end
快速转发
#import "AViewController.h" #import <objc/runtime.h> @interface AViewController () @end @implementation AViewController - (void)viewDidLoad { [super viewDidLoad]; [self performSelector:@selector(speak)]; } - (id)forwardingTargetForSelector:(SEL)aSelector { if (aSelector == @selector(speak)) { return [XXXX new]; } return nil; } @end
完整转发
#import "AViewController.h" #import <objc/runtime.h> @interface AViewController () @end @implementation AViewController - (void)viewDidLoad { [super viewDidLoad]; [self performSelector:@selector(speak)]; } - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { if (aSelector == @selector(speak)) { return [NSMethodSignature signatureWithObjCTypes:"v@:"]; } return [super methodSignatureForSelector:aSelector]; } - (void)forwardInvocation:(NSInvocation *)anInvocation { [anInvocation setSelector:@selector(otherMethod)]; [anInvocation invokeWithTarget:self]; } - (void)otherMethod{ NSLog(@"%s",__func__); } @end
对消息转发的流程有了一些基本概念以后我们就可以稍微深入看看方法交换这个理念了。
方法交换
有的时候我们可能会面对一些需求,比如在每个页面中统一都做的一些处理,像访问埋点等逻辑,如果一个一个去改写的话十分麻烦,用继承的方式去做慢慢会产生各种耦合的情况,这里,我们可以使用方法交换的方式去统一添加处理。
比如我们需要在每一个 ViewController viewDidLoad 的方法中输出一个log
先创建一个 category
#import "UIViewController+Log.h" #import <objc/runtime.h> @implementation UIViewController (Log) static void AGExchangeMethod(Class cls, SEL originSelector, SEL newSelector) { Method originMethod = class_getInstanceMethod(cls, originSelector); Method newMethod = class_getInstanceMethod(cls, newSelector); // method_exchangeImplementations(newMethod, originMethod); BOOL addMethod = class_addMethod(cls, originSelector, method_getImplementation(newMethod), method_getTypeEncoding(newMethod)); if (addMethod) { class_replaceMethod(cls, newSelector, method_getImplementation(originMethod), method_getTypeEncoding(originMethod)); }else { method_exchangeImplementations(newMethod, originMethod); } } + (void)load { static dispatch_once_t once; dispatch_once(&once, ^{ AGExchangeMethod([self class], @selector(viewDidLoad), @selector(Logging)); }); } - (void)Logging{ NSLog(@"%s",__func__); [self Logging]; } @end
编译运行,你可以看到控制台会输出 Logging
这里有几个地方需要特别留意下
load
关联对象
比如我们想要为 UIViewController 添加一个flag属性记录状态,但是无法更改 UIViewController,那么我们可以在 category 中添加属性
#import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UIViewController (Log) @property (nonatomic ,copy) NSString *flag; @end NS_ASSUME_NONNULL_END
然后在其他的 viewController 中使用
- (void)viewDidLoad { [super viewDidLoad]; self.flag = @"active"; }
运行后可以看到崩溃 unrecognized selector sent to instance
,
这是因为在 category 中 property修饰符并不会自动为我们生成成员变量,而我们知道,属性其实是 ivar + getter & setter ,所以我们可以使用 runtime 来手动关联:
在 category 的 .m 文件中增加以下代码
- (void)setFlag:(NSString *)flag { objc_setAssociatedObject(self, @selector(flag), flag, OBJC_ASSOCIATION_COPY); } - (NSString *)flag { return objc_getAssociatedObject(self, _cmd); }
然后就可以在其他 viewController 中随意使用了,由于 objc_setAssociatedObject 也是在ARC管理之下的所以我们也不必手动释放。
写在最后
虽然 Runtime 有诸多魔幻的使用方法,但是不建议过多的使用(除非掌握的很熟练),除非是开发框架,否则多个互相交换的方法和动态的属性在调试的时候会很无奈的。。。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 探秘Runtime - Runtime介绍
- 探秘Runtime - Runtime加载过程
- 探秘Runtime - Runtime源码分析
- 探秘Runtime - Runtime的应用
- 探秘Runtime - Runtime消息发送机制
- 探秘Runtime - 剖析Runtime结构体
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
python学习手册(原书第5版)
马克·卢茨 / 机械工业出版社 / 2018-10 / 219
如果你想动手编写高效、高质量并且很容易与其他语言和工具集成的代码,本书将快速地帮助你利用Python提高效率。本书基于Python专家的流程培训课程编写,内容通俗易懂。本书包含很多注释的例子和插图,以帮助你开始使用Python2.7和3.3。每章都包含关于Python语言的重要组成部分的一节课。本书主要内容:了解Python的主要内置对象类型,如数字、列表和字典;创建和处理对象的Python语句,......一起来看看 《python学习手册(原书第5版)》 这本书的介绍吧!