我使用以下代码更改了按钮颜色:
[self.testButton setBackgroundColor:[UIColor redColor]];
但我有一个奇怪的按钮:
为什么按钮背景颜色没有改变?
我使用以下代码更改了按钮颜色:
[self.testButton setBackgroundColor:[UIColor redColor]];
但我有一个奇怪的按钮:
为什么按钮背景颜色没有改变?
你可以导入#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;
或者,您可以使用一些自定义图像作为此按钮的背景图像。
在 .xib 的属性检查器中将按钮类型更改为自定义,然后检查您的代码
[self.testButton setBackgroundColor:[UIColor redColor]];