在自定义导航栏中设置栏按钮项目颜色
我使用 XIB 创建了一个自定义导航栏和一个右侧导航按钮。这很好用。但我需要自定义右侧导航按钮的色调颜色。目前,该色调与导航栏的色调颜色相同。我需要为这个右侧按钮使用不同的颜色。有什么办法可以改变这个颜色吗?
谢谢。
I created a custom navigation bar and a right navigation button using the XIB. This works fine. But I need to to customize the tint color of the right navigation button. At the moment this tint color is the same color as tint color of navigation bar. I need a different color for this right button. Is there any way to change this color?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 iOS 5 中,有“外观”功能:
[[UIBarButtonItem Appearance] setTintColor:YOUR_COLOR];
In iOS 5 there is 'appearance' feature:
[[UIBarButtonItem appearance] setTintColor:YOUR_COLOR];
据我所知,该按钮继承了导航栏的色调颜色。您可以做的是为导航项设置一个自定义视图:
这是您如何使用 SDK 的按钮之一设置它:
相反,您可以这样做:
使用您在 Photoshop 等中制作的图像。
还有一个
您可以使用 initWithCustomView:UIView
或initWithTitle:NSString
。抱歉,没有“单行解决方案”:)
Not to my knowledge, the button inherits the tint color of the navigationBar. What you can do is set a customView for the navigationItem:
This is how you set it with one of the SDK's buttons:
Instead you can do it like this:
To use an image you made in photoshop etc.
There is als an
initWithCustomView:UIView
orinitWithTitle:NSString
you can use.Sorry no "one-line solution" :)
斯威夫特3.x
Swift 3.x
如果您有具有自定义视图的导航栏按钮项目,您应该首先转换为 UIButton:
然后您可以添加 UIButton 的属性,例如:
If you have navigation bar button item with custom view you should convert to UIButton first:
Then you can add the attributes of UIButton such as: