2

我使用以下代码更改了按钮颜色:

[self.testButton setBackgroundColor:[UIColor redColor]];

但我有一个奇怪的按钮:

在此处输入图像描述

为什么按钮背景颜色没有改变?

4

2 回答 2

10

你可以导入#import <QuartzCore/QuartzCore.h>并试试这个,

self.testButton = [UIButton buttonWithType:UIButtonTypeCustom];
self.testButton.backgroundColor = [UIColor redColor];
self.testButton.layer.borderColor = [UIColor blackColor].CGColor;
self.testButton.layer.borderWidth = 0.5f;
self.testButton.layer.cornerRadius = 10.0f;

或者,您可以使用一些自定义图像作为此按钮的背景图像。

于 2012-12-04T03:48:44.887 回答
2

在 .xib 的属性检查器中将按钮类型更改为自定义,然后检查您的代码

 [self.testButton setBackgroundColor:[UIColor redColor]]; 
于 2012-12-04T04:11:40.997 回答