如何将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]];
请查看这些链接了解更多信息: