标签: swift uiswitch
我试图删除UISwitch上存在的阴影效果。有没有办法去除这个阴影效果?
答案 0 :(得分:0)
似乎使用thumbTintColor删除阴影效果
答案 1 :(得分:0)
对于Swift 3/4:
使用
yourSwitch.thumbTintColor = .clear
对于Objective-C
yourswitch setThumbTintColor: [UIColor clearColor];
希望对你有用。