Swift UISwitch 第一次不工作

Posted

技术标签:

【中文标题】Swift UISwitch 第一次不工作【英文标题】:Swift UISwitch not working first time 【发布时间】:2016-05-17 02:03:10 【问题描述】:

我的视图控制器上有一个 UISwitch,我有它,所以当我切换它时,按钮的文本会发生变化。我第一次将其关闭并打开它不起作用,但是如果您第二次尝试它就起作用了...我的代码中是否缺少某些东西?

        UISwitchOutlet.addTarget(self, action: #selector(MainPageViewController.switchChanged(_:)), forControlEvents: UIControlEvents.ValueChanged)


func switchChanged(mySwitch: UISwitch) 
    let value = UISwitchOutlet.on
    if value 
        self.enterRoom.titleLabel?.text = "Enter Room"
     else 
        self.enterRoom.titleLabel?.textAlignment = NSTextAlignment.Center
        self.enterRoom.titleLabel?.text = "Create"


    

【问题讨论】:

if value 条件之前定义let value = UISwitchOutlet.on 是没有意义的。它永远不会转到 else 选项。删除第一行,将第二行改为if mySwitch.on 哦我的错我以为我必须先设置默认值 只需添加到 viewDidLoad UISwitchOutlet.on = true 【参考方案1】:

试试下面。您的值将始终处于开启状态,因为您正在设置为开启状态。

func switchChanged(mySwitch: UISwitch) 
    if mySwitch.isOn 
        self.enterRoom.titleLabel?.text = "Enter Room"
     else 
        self.enterRoom.titleLabel?.textAlignment = NSTextAlignment.Center
        self.enterRoom.titleLabel?.text = "Create"
    

【讨论】:

以上是关于Swift UISwitch 第一次不工作的主要内容,如果未能解决你的问题,请参考以下文章

Swift UISwitch 选择器内联

Swift - UISwitch

UISwitch 在 Swift 中没有改变值

在 TableViewCell 中保持 UISwitch 的状态:Swift

Swift - 使用 UISwitch 更改引脚颜色

UICollectionViewCell 重用导致不正确的 UISwitch 状态