ios – 更改UIBarbuttonItems颜色

前端之家收集整理的这篇文章主要介绍了ios – 更改UIBarbuttonItems颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将UIBarButtonItem的颜色设置为绿色?我使用的是iOS 4,没有色调属性.请帮帮我.

解决方法

在iOS 4中:
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setBackgroundImage:[UIImage imageNamed:@"green.png"] forState:UIControlStateNormal];
button.frame=CGRectMake(0.0,100.0,60.0,30.0);
[button setTitle:@"Green" forState:UIControlStateNormal];
[button addTarget:self action:@selector(yourAction) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *myButton = [[UIBarButtonItem alloc] initWithCustomView:button];

在这里,您需要一个绿色图像进行此操作,您正在创建一个具有此图像的自定义按钮,并将其设置为UIBarButtonItem的视图.

在iOS 5中,您可以使用:

[[UIBarButtonItem appearance] setTintColor:[UIColor greenColor]];

请查看这些链接了解更多信息:

> UIAppearance Protocol
> User interface customization

原文链接:https://www.f2er.com/iOS/329344.html

猜你在找的iOS相关文章