简述
UIApearance实际上是一个协议,我们可以用它来获取一个类的外观代理(appearance proxy)。您可以通过向外观代理(appearance proxy)发送外观改变消息来改变这个类的所有实例的外观。
iOS applies appearance changes when a view enters a window, it doesn’t change the appearance of a view that’s already in a window. To change the appearance of a view that’s currently in a window, remove the view from the view hierarchy and then put it back.
翻译:当一个view进入到window中时,iOS系统会把外观改变应用在其身上。对于已经存在window的view,系统不会把效果应用在其身上,但是我们可以把view先从父控件中移除,再添加进去。
协议遵守关系
UIKIt继承图.png
分析
UIBarItem< UIApearance >
UIView< UIApearance >
UIResponder 没有遵守此协议
UIViewController 没有遵守此协议
说明:遵守< UIApearance >协议的UI类都默认实现了协议的代理方法。如果我们想在自己VC中遵守协议,那就要自己实现代理方法了(鬼知道怎么实现呢)。
协议代理方法(获取外观代理)
// 获取一个可以改变所有实例对象外观的外观代理。
+ (instancetype)appearance;
// 获取一个可以改变 在某种类型实例对象内部 的实例对象外观 的外观代理。
+ (instancetype)appearanceWhenContainedInInstancesOfClasses:(NSArray<Class <UIAppearanceContainer>> *)containerTypes NS_AVAILABLE_IOS(9_0);
// Returns the appearance proxy for the receiver that has the passed trait collection.(这里需要理解the passed trait collection)
+ (instancetype)appearanceForTraitCollection:(UITraitCollection *)trait NS_AVAILABLE_IOS(8_0);
+ (instancetype)appearanceForTraitCollection:(UITraitCollection *)trait whenContainedInInstancesOfClasses:(NSArray<Class <UIAppearanceContainer>> *)containerTypes NS_AVAILABLE_IOS(9_0);
使用UIAppearance
使用默认UIKit API
To participate in the appearance proxy API, tag your appearance property selectors in your header with UI_APPEARANCE_SELECTOR
我们可以在遵守了协议UIAppearance的类中看到有的方法尾部UI_APPEARANCE_SELECTOR宏标志,例如:UINavigationBar
- -(void)setBackgroundImage:(nullable UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
- -(nullable UIImage *)backgroundImageForBarMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
- @property(nonatomic,assign) UIBarStyle barStyle UI_APPEARANCE_SELECTOR __TVOS_PROHIBITED;
- @property(nullable, nonatomic,strong) UIColor *barTintColor NS_AVAILABLE_IOS(7_0) UI_APPEARANCE_SELECTOR;
然后我们就可以获取相关外观代理 并调用相关方法,例如:
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
使用自定义的API
Appearance property selectors must be of the form:
- -(void)setProperty:(PropertyType)property forAxis1:(IntegerType)axis1 axis2:(IntegerType)axis2 axisN:(IntegerType)axisN;
- -(PropertyType)propertyForAxis1:(IntegerType)axis1 axis2:(IntegerType)axis2 axisN:(IntegerType)axisN;
如果我们想给某个类添加支持Appearance的方法功能,方法设置上要按照上述格式(感觉像废话,每个属性setter和getter方法都是这种格式)。
note:
- 当然这个类是要遵守了UIAppearance 并实现了协议方法的类(为了获取外观代理)。所以一般情况下自定义UIView及其子类是最常用的场景。
- 另外一点就是UI_APPEARANCE_SELECTOR宏标志,就像UINavigationBar一样使用肯定不会有错。
大致原理
举个🌰
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
当我们做了barStyle的外观变化之后,当有新的UINavigationBar实例被添加进window时,外观代理([UINavigationBar appearance])就会在底层调用这个实例的 setBarStyle:方法。
网友评论