每当关闭时,它看起来像这样:
虽然我更希望使用灰色背景。我真的必须使用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/