Swift - UISwitch
发布时间:2020-12-14 05:07:18 所属栏目:百科 来源:网络整理
导读:import UIKitclass ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() //创建UISWitch(Switch无需设置大小) let uiSwitch = UISwitch(frame: CGRect(x: 150,y: 250,width: 0,height: 0)) //设置默认值 uiSwitch.tintCo
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") } } } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |