我正在尝试更改按钮的背景颜色,并且不想使用图像。
[mBtn setBackgroundColor:[UIColor grayColor] forState:UIControlStateHighlighted];
有什么想法吗?
答案 0 :(得分:10)
我正在回复这个旧线程,因为它在搜索此问题的解决方案时一直弹出,我在其他地方看不到任何解决方案。 setTintColor仅适用于UIButton的突出显示状态,这真是令人讨厌。六个月前,同样令人讨厌的是它只适用于iOS 5,但希望这不会成为未来的问题。考虑到这一点,我已经利用并结合了许多社区建议来组合一个通用解决方案,以便在正常状态下对一组按钮进行着色。
下面的方法接受UIButton的NSArray和一组颜色规格作为输入。它使用setTintColor将颜色规范应用于一个按钮,将结果呈现为UIImage,并将该图像应用为整个按钮组的背景图像。这避免了为按钮颜色创建离散图像文件的需要。此外,它使用可伸缩图像这样做,以便它可以使用不同大小的按钮集合(但请注意,它假定UIButton的默认角圆角因子)。我希望你会发现它对iOS 5目标很有用。
- (void) setColorOfButtons:(NSArray*)buttons red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha {
if (buttons.count == 0) {
return;
}
// get the first button
NSEnumerator* buttonEnum = [buttons objectEnumerator];
UIButton* button = (UIButton*)[buttonEnum nextObject];
// set the button's highlight color
[button setTintColor:[UIColor colorWithRed:red/255.9999f green:green/255.9999f blue:blue/255.9999f alpha:alpha]];
// clear any existing background image
[button setBackgroundImage:nil forState:UIControlStateNormal];
// place the button into highlighted state with no title
BOOL wasHighlighted = button.highlighted;
NSString* savedTitle = [button titleForState:UIControlStateNormal];
[button setTitle:nil forState:UIControlStateNormal];
[button setHighlighted:YES];
// render the highlighted state of the button into an image
UIGraphicsBeginImageContext(button.layer.frame.size);
CGContextRef graphicsContext = UIGraphicsGetCurrentContext();
[button.layer renderInContext:graphicsContext];
UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
UIImage* stretchableImage = [image stretchableImageWithLeftCapWidth:12 topCapHeight:0];
UIGraphicsEndImageContext();
// restore the button's state and title
[button setHighlighted:wasHighlighted];
[button setTitle:savedTitle forState:UIControlStateNormal];
// set background image of all buttons
do {
[button setBackgroundImage:stretchableImage forState:UIControlStateNormal];
} while (button = (UIButton*)[buttonEnum nextObject]);
}
答案 1 :(得分:6)
[mBtn setTintColor:[UIColor grayColor]];
这只会影响突出显示的状态,所以我相信这就是你要找的东西。
您也可以从精彩色调下拉菜单中的Interface Builder进行设置。
答案 2 :(得分:4)
对于那些将会像我在搜索突出显示状态时更改背景颜色时所做的那样降落的人...
我最终得到了一个UIButton子类,它具有backgroundHighlightColor属性并通过KVO跟踪突出显示。这是GitHub的链接:SOHighlightButton
如果你需要更多/其他属性,你应该能够适应任何其他场景,如果突出显示UIButton就会改变。
答案 3 :(得分:0)
没有像这样的方法,setBackgroundColor:forState:
检查文档。你需要使用图像。