博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OC高效率52之“方法调配技术”调试“黑盒方法”
阅读量:6592 次
发布时间:2019-06-24

本文共 1378 字,大约阅读时间需要 4 分钟。

hot3.png

#import "ViewController.h"#import 
#import "NSString+EocMyAdditions.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];    //类的方法列表会把选择子的名称映射到相关的方法实现之上,使得“动态消息派发系统”能够据此找到应该调用的方法。这些方法均以函数指针的形式来表示,这种指针叫IMP    id(*IMP)(id,SEL);    //1.如何互换两个方法的实现    Method originaMethod = class_getInstanceMethod([NSString class], @selector(lowercaseString));    Method swappedMethod = class_getInstanceMethod([NSString class], @selector(eoc_myLowercaseString));        method_exchangeImplementations(originaMethod, swappedMethod);//方法的实现进行交换  就可以进行黑盒的调试        NSString *string = @"ThIs is tHe StriNg";    NSString *lowercaseString = [string lowercaseString];        NSLog(@"%@",lowercaseString);    //this is the string}- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}@end
#import 
@interface NSString (EocMyAdditions)-(NSString *)eoc_myLowercaseString;@end#import "NSString+EocMyAdditions.h"@implementation NSString (EocMyAdditions)-(NSString *)eoc_myLowercaseString{    NSString *lowercase = [self eoc_myLowercaseString];//用此方法跟lowercaseString互换,不会陷入递归的死循环    NSLog(@"分类中打印》》》》》》》》%@ =>%@",self,lowercase);分类中打印》》》》》》》》ThIs is tHe StriNg =>this is the string    return lowercase;}@end

转载于:https://my.oschina.net/u/2319073/blog/611843

你可能感兴趣的文章
家具行业探索:企业管理沟通新模式
查看>>
ReplyError: MISCONF Redis is configured to save RDB snapshots,
查看>>
建立Git版本库管理框架例子
查看>>
nginx防止部分DDOS攻击
查看>>
编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字......
查看>>
number_format() 函数定义和用法
查看>>
Java8中聚合操作collect、reduce方法详解
查看>>
查看记录
查看>>
mybatis报ORA-00911: 无效字符
查看>>
Swift UIView动画animateWithDuration
查看>>
Maven 集成Tomcat插件
查看>>
css中的line-height问题
查看>>
nagios监控配置
查看>>
Hadoop初体验:快速搭建Hadoop伪分布式环境
查看>>
项目进度管理、项目成本管理作业
查看>>
我的友情链接
查看>>
Linux运维学习笔记之二:常用命令1
查看>>
snort安装常见问题及解决方法
查看>>
帧中继(网云)的配置方法
查看>>
在ubuntu系统安装jdk
查看>>