如何在导航栏中设置后退按钮的色调颜色[重复]
Posted
技术标签:
【中文标题】如何在导航栏中设置后退按钮的色调颜色[重复]【英文标题】:How to setTintColor for backButton in navigationBar [duplicate] 【发布时间】:2014-01-10 09:34:13 【问题描述】:我尝试了很多方法,但都没有成功。请告诉我这样做的方法。
[[[[[self navigationController] navigationBar] backItem] backBarButtonItem] setTintColor: [UIColor whiteColor]];
此代码无效
【问题讨论】:
【参考方案1】:试试这个。
[[[self navigationController] navigationBar] setTintColor: [UIColor whiteColor]];
【讨论】:
【参考方案2】:你可以试试这个。
[[UIBarButtonItem appearance] setTintColor:[UIColor purpleColor]];
【讨论】:
【参考方案3】:要在整个应用程序中更改后退按钮 V 形,请执行以下操作:
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
*请注意,如果您使用超过 1 个 UINavigationController,则必须为每个设置此设置。
【讨论】:
【参考方案4】:在 ios 7 中,tint color 是 UIView
的属性。如果未设置,则继承。设置导航栏本身的色调会影响它的子视图,但不会影响导航栏的实际背景(就像它在 iOS 6 中使用的那样)。
试试这个:
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
【讨论】:
以上是关于如何在导航栏中设置后退按钮的色调颜色[重复]的主要内容,如果未能解决你的问题,请参考以下文章
在 AppDelegate 中设置 UIButton 外观时如何更改 SafariViewController 中导航栏的色调