我在项目中使用了UISwitch,并使用switch.tintColor
成功更改了边框的颜色。但是,笔划有点厚 - 有没有办法在UISwitch上更改此边框的宽度?
答案 0 :(得分:1)
您好,您可以设置开关的图层边框,为您提供所需的自定义:
switch.layer.borderWidth = 1.0;
switch.layer.cornerRadius = 16.0;
switch.layer.borderColor = [UIColor whiteColor].CGColor;