如何在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]];