gpt4 book ai didi

ios:更改按钮颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:53:28 26 4
gpt4 key购买 nike

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

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

但我有一个奇怪的按钮:

enter image description here

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

最佳答案

您可以导入 #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;

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

关于ios:更改按钮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13695659/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com