码迷,mamicode.com
首页 > 其他好文 > 详细

runtime --- 方法实现交换

时间:2017-08-07 15:22:49      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:log   type   实现   instance   nsurl   get   sel   string   runtime   

 

 

方法欺骗  使用 runtime 进行两个方法的交换

 

+ (void)load {
    //获取类方法
    Method olld = class_getClassMethod([self class], @selector(URLWithString:));
    
    Method new = class_getClassMethod([self class], @selector(AZ_URLWithString:));
    //交换两个方法的实现
    method_exchangeImplementations(olld, new);
    
}

+ (instancetype)AZ_URLWithString:(NSString *)str{
    
    NSURL *url  =[NSURL AZ_URLWithString:str];
    if (!url) {
        NSLog(@"交换方法");
    }
    return url;
}

 

runtime --- 方法实现交换

标签:log   type   实现   instance   nsurl   get   sel   string   runtime   

原文地址:http://www.cnblogs.com/azhen/p/7298888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!