Runtime工作实用场景

先说一个我工作中用到的场景吧

产品经理说5s上字体太小了,项目比较大,设置字体的代码太多了, 不可能一个个改

这个时候Runtime就派上用场了,我这里交换的系统方法是willMoveToSuperview

也可以交换systemFontOfSize

也就是Hook了系统的方法

零:交换方法

Runtime工作实用场景_第1张图片

Runtime工作实用场景_第2张图片

Runtime工作实用场景_第3张图片

这里就实现了把整个项目所有设置字体的方法替换了,以此类推,你也可以交换系统或者第三方库的其他方法

细节方便需要自己判断,防止崩溃

 

一:通过Runtime查看私有变量

案例一:修改UITextField的占位字体的颜色

可以使用attributedPlaceholder

NSMutableDictionary *attrs = [NSMutableDictionary dictionary];

attrs[NSForegroundColorAttributeName] = [UIColor redColor];

self.textField.attributedPlaceholder = [[NSMutableAttributedString alloc] initWithString:@"请输入用户名" attributes:attrs]

 

也可以使用Runtime

可以拿到内部非公开的api:方法,属性等等,然后通过kvc设置占位字体的颜色

setValue:forKeyPath:

[self.textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];

 

或者    

UILabel *placeholderLabel = [self.textField valueForKeyPath:@"_placeholderLabel"];

placeholderLabel.textColor = [UIColor redColor];

二:通过Runtime字典转模型

这个github很多比较好的字典转模型框架都有用到比如:YYModel,MJExtension

通过Runtime获取到成员变量,然后遍历成员变量,拿到一个成员变量,就去字典取

取到值,通过kvc设置值, setValue:value

这里只是写个思路,细节问题很多都要需要处理

Runtime工作实用场景_第4张图片

 

三:动态替换方法

IMP class_replaceMethod(Class cls, SEL name, IMP imp, const char *types)

void myrun(){

    NSLog(@"---myrun");

}

void test(){

    Person *person = [[Person alloc] init];

    class_replaceMethod([Person class], @selector(run), (IMP)myrun, "v");    

    //class_replaceMethod([Person class], @selector(run),         imp_implementationWithBlock(^{

        NSLog(@"123123");

    }), "v");

        [person run];

}

你可能感兴趣的:(iOS)