iOS运行时--替换方法
Posted Eric博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS运行时--替换方法相关的知识,希望对你有一定的参考价值。
如果你想修改现有类的一些方法时,可以使用OC的运行时特性,去替换想要修改的方法。
这里使用NSURL类做示例:
在模拟器中运行下面一段代码:
NSURL *url = [NSURL URLWithString:@"http://www.baidu.com/人民币"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSLog(@"request%@",request);
结果:
2018-07-17 14:34:49.819338+0800 test[48600:9501401] request<NSURLRequest: 0x604000018cf0> URL: (null)
URL为空,这是因为urlstring中包含中文,需要编译,如果你在多处使用了NSURL方法,修改的话你需要去多处修改,如果使用替换方法,只需要在分类中修改就可以了
#import "NSURL+HMCNSURL.h"
#import <objc/message.h>
@implementation NSURL (HMCNSURL)
//在加载的时候会调用此方法
+ (void)load
Method method1 = class_getClassMethod([NSURL class], @selector(HMCURLWithString:));
Method method2 = class_getClassMethod([NSURL class], @selector(URLWithString:));
method_exchangeImplementations(method1, method2);
+ (instancetype)HMCURLWithString:(NSString *)URLString
URLString = [URLString stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
//这里一定要使用HMCURLWithString方法,不能使用URLWithString方法,因为会造成死循环
NSURL *url = [NSURL HMCURLWithString:URLString];
if(url==nil)
NSLog(@"url为空!");
return url;
@end
结果如下:
2018-07-17 17:30:30.701098+0800 test[50869:9753758] request<NSURLRequest: 0x60800001fc50> URL: http://www.baidu.com/%E4%BA%BA%E6%B0%91%E5%B8%81
以上是关于iOS运行时--替换方法的主要内容,如果未能解决你的问题,请参考以下文章