如何在iOS 7中设置UIBarButtonItem选择或突出显示的图像或色调颜色?

前端之家收集整理的这篇文章主要介绍了如何在iOS 7中设置UIBarButtonItem选择或突出显示的图像或色调颜色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在iOS 7中提供正常状态和选定/突出显示的状态图像到uibarbuttonitem?有没有什么办法提供色调的正常和选择/突出显示状态的uibarbuttonitem?

我不想使用uibutton作为uibarbuttonitem的视图!任何优雅的解决方案将非常感激.

解决方法

您可以使用 UIAppearance Protocol Reference
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor],UITextAttributeTextColor,[UIColor clearColor],UITextAttributeTextShadowColor,nil];

[[UIBarButtonItem appearance] setTitleTextAttributes:options forState:UIControlStateNormal];

您可能还需要使用:

[[UINavigationBar appearance] setTintColor:[UIColor redColor]];
原文链接:https://www.f2er.com/iOS/329745.html

猜你在找的iOS相关文章