swift中UISwitch的使用

swift中UISwitch的使用,第1张

概述// 实例化(注意:默认宽高是 51 x 31。指定大小无效)let switchview = UISwitch(frame: CGRectMake(10.0, 10.0, 0.0, 0.0))self.view.addSubview(switchview)switchview.backgroundColor = UIColor.yellowColor() // 打开时背景
// 实例化(注意:默认宽高是 51 x 31。指定大小无效)let switchvIEw = UISwitch(frame: CGRectMake(10.0,10.0,0.0,0.0))self.vIEw.addSubvIEw(switchvIEw)switchvIEw.backgroundcolor = UIcolor.yellowcolor()        // 打开时背景色switchvIEw.onTintcolor = UIcolor.browncolor()// 开关块颜色switchvIEw.thumbTintcolor = UIcolor.bluecolor()// 关闭时边框颜色switchvIEw.tintcolor = UIcolor.orangecolor()        // 开关图标设置(设置后无效??)switchvIEw.onImage = UIImage(named: "normalimage")switchvIEw.offImage = UIImage(named: "hightimage")        // 初始化开,或关switchvIEw.seton(false,animated: true)        // 响应事件switchvIEw.addTarget(self,action: Selector("switchValueChange:"),forControlEvents: UIControlEvents.ValueChanged)
// MARK: - switchValueChangefunc switchValueChange(sender:UISwitch){        let openStatus = sender.on        if openStatus        {            self.vIEw.backgroundcolor = UIcolor.cyancolor()        }        else        {            self.vIEw.backgroundcolor = UIcolor.whitecolor()        }}

总结

以上是内存溢出为你收集整理的swift中UISwitch的使用全部内容,希望文章能够帮你解决swift中UISwitch的使用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1071483.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存