一.在AppDelegate中添加以下这行代码
二.如果针对某一类型控件统一颜色可以用Method Swizzling进行设置
1.给控件新增一个分类,添加你需要交换的方法。
2.通过runtime中方法class_getInstanceMethod,获取方法实例。
3.再通过method_exchangeImplementations进行交换方法。
1.给控件新增一个分类,添加你需要交换的方法。
2.通过runtime中方法class_getInstanceMethod,获取方法实例。
3.再通过method_exchangeImplementations进行交换方法。