我正在开发一款拥有UISwitch的应用。我想以编程方式将开关设置为开/关。我试过这样,但是当setting
为false
时,开关已经打开...有什么想法吗?
@IBOutlet var switch: UISwitch!
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
switch = UISwitch()
if setting == true {
switch.setOn(true, animated: false)
} else {
switch.setOn(false, animated: false)
}
}
变量setting
不是问题..我测试了它
答案 0 :(得分:0)
我修好了!
我刚刚删除了行switch = UISwitch()
,现在它适用于我。