我注意到在iOS5中我们可以通过UIAppearance
自定义UIKit控件并开始使用它。
我想使用appearanceWhenContainedIn:
在不同的班级中自定义UINavigationBar
的{{1}},例如:
tintColor
然而,它完全不起作用。我尝试在A / B类中添加属性,如:
[[UINavigationBar appearanceWhenContainedIn:[A class], nil] setTintColor:[UIColor greenColor]];
[[UINavigationBar appearanceWhenContainedIn:[B class], nil] setTintColor:[UIColor redColor]];
它似乎也没用。
任何提示? 感谢。