iOS&Swift🍎
IOS Switch 배경화면 설정
천 원
2022. 3. 20. 01:55
배경화면 설정시 화면에 네모 모양으로 배경이 설정되어 어려움을 겪었다
@IBOutlet var mSwitch: UISwitch!
mSwitch.tintColor = UIColor.white
mSwitch.layer.cornerRadius = mSwitch.frame.height / 2.0
mSwitch.backgroundColor = UIColor.white
mSwitch.clipsToBounds = true
해결!