gpt4 book ai didi

ios - 设置 UISwitch 打开时的描边颜色?

转载 作者:行者123 更新时间:2023-11-28 22:02:01 25 4
gpt4 key购买 nike

我有一个 UISwitch,它需要在打开时和关闭时具有相同的样式。唯一的区别是小圆圈的位置。

关闭时是这样的:

enter image description here

……这很好。但是当我打开它时,描边消失了:

enter image description here

如何让它在打开时保持笔划?如果那不可能,我至少可以让它在关闭时着色,而不仅仅是在开启时着色吗?

最佳答案

Apple 可能会拒绝您的应用程序,因为它没有为 On 状态显示不同的颜色,但我相信这就是您想要的:这将显示每个状态的“描边”。

@property (nonatomic, strong) IBOutlet UISwitch *theSwitch;

self.theSwitch.layer.borderColor = [UIColor colorWithRed:229.0/255.0 green:229.0/255.0 blue:229.0/255.0 alpha:1.0].CGColor;
self.theSwitch.layer.borderWidth = 1.5;
self.theSwitch.layer.cornerRadius = 31.0/2.0;

结果:

enter image description here enter image description here

关于ios - 设置 UISwitch 打开时的描边颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24895842/

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