gpt4 book ai didi

ios - 如何使 iOS 7 下的 UISwitch 不采用其背后 View 的背景颜色?

转载 作者:IT王子 更新时间:2023-10-29 07:59:57 26 4
gpt4 key购买 nike

关闭时看起来像这样:

enter image description here

虽然我更喜欢灰色背景。我真的必须使用 UIImageView 吗?

最佳答案

以下是我如何更改 iOS7 UISwitch 的填充颜色。

首先你需要导入 QuartzCore。

#import <QuartzCore/QuartzCore.h>

然后设置背景颜色并圆化 UISwitch 的角。

UISwitch *mySwitch = [[UISwitch alloc] initWithFrame:CGRectMake(0.0, 0.0, 51.0, 31.0)];
mySwitch.backgroundColor = [UIColor redColor];
mySwitch.layer.cornerRadius = 16.0; // you must import QuartzCore to do this.
[self addSubview:mySwitch];

这将为您提供一个具有自定义关闭(背景)颜色的 UISwitch。

希望这对某人有帮助:)

关于ios - 如何使 iOS 7 下的 UISwitch 不采用其背后 View 的背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19187817/

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