最近才发现,可以使用UIView
以及其他一些类中实现的appearance
方法,一次性设定整个app中系统控件的外观。
比如,可以设定UIButton
的默认背景色为红色:
[[UIButton appearance] setBackgroundColor:[UIColor redColor]];
这样,在这个app中创建的UIButton
的默认背景色都成为了红色。
感觉是在改变整个app中某些系统控件的外观上,这的确是一个很方便的方法。
UIAppearance的使用
刚才用到的appearance
方法是UIAppearance
协议中的一个方法。根据官方文档的说法,它返回的是一个类的外观代理。可以通过给这个外观代理发送改变外观的消息,来达到自定义这个类的实例的外观的效果。
但是需要注意的是,使用外观代理改变控件的默认外观,只会对之后出现在窗口上的视图有效,但并不会改变之前就已经在窗口上的视图。
除了appearance
方法,UIAppearance
还有这些方法,来处理出现在特定容器中,或者是特定trait collection中的控件:
+ (instancetype)appearanceWhenContainedIn:(Class <UIAppearanceContainer>)ContainerClass, ... ;
+ (instancetype)appearanceForTraitCollection:(UITraitCollection *)trait;
+ (instancetype)appearanceForTraitCollection:(UITraitCollection *)trait whenContainedIn:(Class <UIAppearanceContainer>)ContainerClass, ... ;
而在系统控件中,只有被UI_APPEARANCE_SELECTOR
标签标记的方法,才支持使用外观代理来指定。
不过也可能有比较特殊的情况,试了一下,比如UILabel
中的backgroundColor
就不支持使用appearance方法设定。
企图了解UIAppearance的实现
在使用appearance
方法的时候,我发现,对appearance
方法返回的外观代理发送消息的时候,对应的方法其实并没有被执行。
比如,自定义一个类MYButton
继承自UIButton
,重写UIButton
中的setTitleColor:forState:
方法,在其中调用super,然后加上断点。但是当
[[MYButton appearance] setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
这一语句执行时,断点并没有触发。
打印[MYButton appearance]
的返回值,发现返回值并不是MYButton
类型:
<_UIAppearance:0x7fb3e9e2b4c0> <Customizable class: MYButton> with invocations (null)>
甚至,这个语句的返回值是NO
:
[[MYButton appearance] respondsToSelector:@selector(setTitleColor:forState:)];
这表示,appearance
方法以及与其相关的某些方法,在实现的时候,使用了高级的对运行时的控制O.O
虽然好奇其中使用的方法,但是调试了一番依然没有得到什么结论。