设置导航栏按钮标题文本颜色
我只是想知道是否可以设置 NavigationBarButton 的标题文本颜色,如果可以,如何设置?
I just wanted to know if it is possible to set the NavigationBarButton's title's text color, and if so how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我做了以下事情。在 -(id)init 添加:
然后在 -(void)viewDidLoad 添加:
我这样放置它们,以便我可以根据到达此屏幕的方式更改标题和标题颜色。如果不需要自定义,那就全部放在init或者viewDidLoad中。这样做我收到一条警告:“UIView 可能不会响应'-setText'”,即使一切正常。
I did the following. In -(id)init add:
Then in -(void)viewDidLoad add:
I put them like this so that I could change the title and titleColor based on how one got to this screen. If you don't need to customize, then put it all in init or viewDidLoad. Doing it like this I get a warning that "UIView may not respond to '-setText'" even though it all works fine.
您可以为
UIBarButtonItem
设置图像,从而完全自定义标题文本。You can set an image for the
UIBarButtonItem
and thus fully customize the title text.