Swift - UISwitch

Posted ios-development

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift - UISwitch相关的知识,希望对你有一定的参考价值。

import UIKit

class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        //创建UISWitch(Switch无需设置大小)
        let uiSwitch = UISwitch(frame: CGRect(x: 150, y: 250, width: 0, height: 0))
        //设置默认值
        uiSwitch.tintColor = UIColor.red//Switch 边框颜色
        uiSwitch.thumbTintColor = UIColor.blue//Switch 左右滑动的圆圈颜色
        uiSwitch.onTintColor = UIColor.black//Switch 空白部分颜色
        uiSwitch.setOn(true, animated: true)
        //创建点击UISwitchd事件
        uiSwitch.addTarget(self, action: #selector(ViewController.SwitchChanged), for: .valueChanged)
        self.view.addSubview(uiSwitch)
    }
    @objc func SwitchChanged(_ uiSwitch:UISwitch)
    {
        if uiSwitch.isOn{
            print("turn on the Switch")
        }else{
            print("turn off the Switch")
        }
    }
} 

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

Swift - UISwitch

UISwitch 在 Swift 中没有改变值

在 TableViewCell 中保持 UISwitch 的状态:Swift

Swift - 使用 UISwitch 更改引脚颜色

Swift:如何使用 UISwitch 控制 UITextField 通过委托启用或禁用

滚动时 TableViewCell 中的 Swift 3 UISwitch 丢失状态