Runtime 是什么? Runtime 有什么作用?
1. Rutime 是什么?
1.1. Runtime 簡(jiǎn)稱(chēng)運(yùn)行時(shí),就是系統(tǒng)在運(yùn)行的時(shí)候的一些機(jī)制,其中最主要的是消息機(jī)制.
當(dāng)我們編寫(xiě) OC 代碼之后,當(dāng)運(yùn)行之后都會(huì)變成 runtime 的方式運(yùn)行.比如:
OC 代碼:[tableViewre loadData];
運(yùn)行之后轉(zhuǎn)換為
Runtime 代碼:objc_msgSend(tableView, @selector(reloadData));
1.2. Rutime常用方法
創(chuàng)建一個(gè) Person 類(lèi):
#import <Foundation/Foundation.h>
@interface Person : NSObject{
/**
成員變量
*/
NSInteger _age;
NSString *_gender;
}
/**
屬性
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *identyfier;
/**
方法
*/
- (void)eatByFood:(NSString *)food;
+ (void)run;
+ (void)walk;
@end
#import "Person.h"
@implementation Person
- (void)eatByFood:(NSString *)food {
NSLog(@"吃%@", food);
}
+ (void)run {
NSLog(@"跑步");
}
+ (void)walk {
NSLog(@"走路");
}
@end
- 獲取此類(lèi)的屬性列表
unsigned int count;
//屬性列表
objc_property_t *propertyList = class_copyPropertyList([Person class], &count);
//打印每個(gè)屬性的名稱(chēng)
for (unsigned int i = 0; i < count; i++) {
const char *propertyName = property_getName(propertyList[i]);
NSLog(@"PropertyName -- %@", [NSString stringWithUTF8String:propertyName]);
}
Log:
2017-11-18 14:06:12.187593+0800 runtime[845:20588170] PropertyName -- name
2017-11-18 14:06:12.188593+0800 runtime[845:20588170] PropertyName -- identyfier
- 獲取此類(lèi)的成員列表
unsigned int count;
//成員變量列表
Ivar *ivarList = class_copyIvarList([Person class], &count);
//打印每個(gè)成員變量的名稱(chēng)
for (unsigned int i = 0; i < count; i++) {
const char *ivarName = ivar_getName(ivarList[i]);
NSLog(@"IvarName -- %@", [NSString stringWithUTF8String:ivarName]);
}
Log:
2017-11-18 14:15:33.972601+0800 runtime[1232:20657314] IvarName -- _age
2017-11-18 14:15:33.972724+0800 runtime[1232:20657314] IvarName -- _gender
2017-11-18 14:15:33.972827+0800 runtime[1232:20657314] IvarName -- _name
2017-11-18 14:15:33.972919+0800 runtime[1232:20657314] IvarName -- _identyfier
- 獲取此類(lèi)的方法列表
//方法列表
Method *methodList = class_copyMethodList([Person class], &count);
//打印每個(gè)方法的名稱(chēng)
for (unsigned int i = 0; i < count; i++) {
Method method = methodList[i];
SEL method_sel = method_getName(method);
NSLog(@"MethodName -- %@", NSStringFromSelector(method_sel));
}
2017-11-18 14:38:14.811410+0800 runtime[2235:20835336] MethodName -- eatByFood:
2017-11-18 14:38:14.811519+0800 runtime[2235:20835336] MethodName -- identyfier
2017-11-18 14:38:14.812418+0800 runtime[2235:20835336] MethodName -- setIdentyfier:
2017-11-18 14:38:14.814270+0800 runtime[2235:20835336] MethodName -- .cxx_destruct
2017-11-18 14:38:14.814633+0800 runtime[2235:20835336] MethodName -- name
2017-11-18 14:38:14.814794+0800 runtime[2235:20835336] MethodName -- setName:
- 獲取此類(lèi)的類(lèi)方法
Method runMethod = class_getClassMethod([Person class], @selector(run));
Method walkMethod = class_getClassMethod([Person class], @selector(walk));
- 獲取此類(lèi)的實(shí)例方法
Method eatMethod = class_getInstanceMethod([Person class], @selector(eatByFood:));
- 交換方法
Method runMethod = class_getClassMethod([Person class], @selector(run));
Method walkMethod = class_getClassMethod([Person class], @selector(walk));
method_exchangeImplementations(runMethod, walkMethod);
2. Runtime 有什么作用?
- Category 添加屬性的綁定;
- 動(dòng)態(tài)添加方法(方法懶加載)坟乾;
- 交換兩個(gè)方法的實(shí)現(xiàn);
- 替換系統(tǒng)已有的方法;
- 消息轉(zhuǎn)發(fā)機(jī)制;
2.1. Category 添加屬性的綁定
添加類(lèi) Person 的分類(lèi)并且添加屬性綁定:
#import "Person.h"
@interface Person (Extension)
@property (nonatomic, copy) NSString *occupation;
@end
#import "Person+Extension.h"
#import <objc/message.h>
@implementation Person (Extension)
static const char *OccupationKey = "OccupationKey";
- (void)setOccupation:(NSString *)occupation {
objc_setAssociatedObject(self, OccupationKey, occupation, OBJC_ASSOCIATION_ASSIGN);
}
- (NSString *)occupation {
return objc_getAssociatedObject(self, OccupationKey);
}
@end
2.2. 動(dòng)態(tài)添加方法
Person *p = [[Person alloc] init];
[p performSelector:@selector(study:) withObject:@(8)];
類(lèi)中不存在study:
方法,此時(shí)找不到此方法,因此程序執(zhí)行會(huì) Crash.
為此類(lèi)動(dòng)態(tài)添加 study:
方法:
/**
當(dāng) Runtime 系統(tǒng)在 Cache 和類(lèi)的方法列表(包括父類(lèi))中找不到要執(zhí)行的方法時(shí)康栈,
Runtime 會(huì)調(diào)用 resolveInstanceMethod: 或 resolveClassMethod: 來(lái)給我們一次動(dòng)態(tài)添加方法實(shí)現(xiàn)的機(jī)會(huì)行楞。
我們需要用 class_addMethod 函數(shù)完成向特定類(lèi)添加特定方法實(shí)現(xiàn)的操作:
*/
+ (BOOL)resolveInstanceMethod:(SEL)sel {
if ([NSStringFromSelector(sel) isEqualToString:@"study:"]) {
class_addMethod(self, sel, (IMP)custom_study_method, "v@:@");
}
return [super resolveInstanceMethod:sel];
}
void custom_study_method(id self, SEL _cmp, id hour) {
NSLog(@"學(xué)習(xí)了%@小時(shí)", hour);
}
2.3. 交換兩個(gè)方法的實(shí)現(xiàn)
未交換前的調(diào)用此兩個(gè)方法
[Person run];
[Person walk];
Log:
2017-11-18 16:21:57.626816+0800 runtime[6415:21623838] 跑步
2017-11-18 16:21:57.627144+0800 runtime[6415:21623838] 走路
交換方法
+ (void)load {
Method runMethod = class_getClassMethod(self, @selector(run));
Method walkMethod = class_getClassMethod(self, @selector(walk));
method_exchangeImplementations(runMethod, walkMethod);
}
在交換后的調(diào)用此兩個(gè)方法
[Person run];
[Person walk];
Log:
2017-11-18 16:26:51.442822+0800 runtime[6748:21682758] 走路
2017-11-18 16:26:51.443171+0800 runtime[6748:21682758] 跑步
明顯看得出雖然都是調(diào)用的同樣方法,但打印的結(jié)果已經(jīng)調(diào)換了.
2.4. 替換已有的方法
在編碼中,假設(shè)系統(tǒng)類(lèi)中的某個(gè)方法,我們需要改變這個(gè)方法的實(shí)現(xiàn).而恰恰我們又改不了系統(tǒng)類(lèi)的源碼(或者是自己寫(xiě)的類(lèi)和第三方不想去改源碼),這時(shí)候可以用 runtime 來(lái)實(shí)現(xiàn).
//第一種
//url 中不包含中文
NSURL *url = [NSURL URLWithString:@"www.baidu.com"];
NSLog(@"%@", url);
Log:
2017-11-18 17:07:05.608822+0800 runtime[8349:21965250] www.baidu.com
//第二種
//url 中包含中文
NSURL *url = [NSURL URLWithString:@"www.baidu.com/百度"];
NSLog(@"%@", url);
Log:
2017-11-18 17:05:50.173236+0800 runtime[8268:21947324] (null)
第一種和第二種就只是加了中文字的區(qū)別,而打印之后的 url 卻為 null.
此時(shí),仍然使用此 URLWithString,但要區(qū)別url是否為空.并且做相應(yīng)的處理.
添加類(lèi) NSURL 的分類(lèi)
#import <Foundation/Foundation.h>
@interface NSURL (Extension)
@end
#import "NSURL+Extension.h"
#import <objc/message.h>
@implementation NSURL (Extension)
+ (void)load {
Method urlMethod = class_getClassMethod([self class], @selector(URLWithString:));
Method yxl_urlMethod = class_getClassMethod([self class], @selector(yxl_URLWithString:));
method_exchangeImplementations(urlMethod, yxl_urlMethod);
}
+ (instancetype)yxl_URLWithString:(NSString *)URLString {
NSURL *url = [self yxl_URLWithString:URLString];
if (url == nil) {
/**
在這里處理操作
*/
NSLog(@"此鏈接為空...");
}
return url;
}
@end
添加之后,運(yùn)行結(jié)果就有相應(yīng)的提示:
2017-11-18 17:10:11.795304+0800 runtime[8514:21993184] 此鏈接為空...
2017-11-18 17:10:11.797697+0800 runtime[8514:21993184] (null)
- 未完待續(xù),不正確的地方請(qǐng)大神們的指點(diǎn),謝謝!
- Demo的地址