TintColor 着色

作用:UIview 有个属性叫 TintColor,可以给应用着色。

* 所有作为其他视图的子视图,存在的UI元素,都会在未设置的tintColor 的情况下使用父视图的 tintcolor。这意味着你可以给应用程序的窗口设置tintcolor就可以全局的着色。 *

注意:如果是 模态视图出现时,iOS7 就会把它后面背景模糊, 自定义一个视图的话,并且用了父视图的tintcolor 来做一些自定义渲染,就要覆盖 tintColorDidChange 方法来更新变化。

-英文说明:
The -tintColorDidChange message is sent to appropriate subviews of a view when its tintColor is changed by client code or to subviews in the view hierarchy of a view whose tintColor is implicitly changed when its superview or tintAdjustmentMode changes.

  - (void)tintColorDidChange NS_AVAILABLE_IOS(7_0);

设置导航栏的颜色:

nav.navigationBar.barTintColor  = [UIColor redColor ] ;  // IOS7.0 

你可能感兴趣的:(TintColor 着色)