删除UISwitch拇指阴影效果 - 迅捷

时间:2017-11-08 10:04:15

标签: swift uiswitch

我试图删除UISwitch上存在的阴影效果。有没有办法去除这个阴影效果?

enter image description here

2 个答案:

答案 0 :(得分:0)

似乎使用thumbTintColor删除阴影效果

答案 1 :(得分:0)

对于Swift 3/4:

使用

yourSwitch.thumbTintColor = .clear

对于Objective-C

yourswitch setThumbTintColor: [UIColor clearColor];

希望对你有用。