码迷,mamicode.com
首页 > 编程语言 > 详细

Swift - UISwitch

时间:2019-01-06 11:54:18      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:val   rect   super   col   ima   边框   大小   tar   swift   

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

标签:val   rect   super   col   ima   边框   大小   tar   swift   

原文地址:https://www.cnblogs.com/iOS-Development/p/10227402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!