• swift UISwitch + UISegmentedControl


    //

    //  SegmentedControl.swift

    //  UIControlDemo

    //

    //  Created by   on 14/12/1.

    //  Copyright (c) 2014 马大哈. All rights reserved.

    //

     

    import UIKit

     

    class SegmentedControl: BaseViewController {

        

        var  colorSegment: UISegmentedControl?

        var colorSwitch:UISwitch?

     

        override func viewDidLoad() {

            super.viewDidLoad()

            

            self.title = "UISegmentedControl+UISwitch"

            

            self.view.backgroundColor = UIColor.redColor()

            

            var colorArray = ["","","",""];

            

            colorSegment = UISegmentedControl(items: colorArray)

            colorSegment?.frame = CGRectMake(30, 100, self.view.frame.size.width-60,40)

            colorSegment?.selectedSegmentIndex = 0

            colorSegment?.addTarget(self, action: "changeColor:", forControlEvents: UIControlEvents.ValueChanged)

            self.view.addSubview(colorSegment!)

            

            // UISwitch width height都是系统锁定的默认值,无法通过frame修改

            colorSwitch = UISwitch(frame: CGRectMake(30, 170, 100,40))

            colorSwitch?.on = false

            colorSwitch?.onTintColor = UIColor.blackColor()

            colorSwitch?.tintColor = UIColor.blueColor()

            colorSwitch?.addTarget(self, action: "openClose:", forControlEvents: .ValueChanged)

            self.view.addSubview(colorSwitch!)

     

        }

        

        

        func changeColor(segment:UISegmentedControl){

            

            switch segment.selectedSegmentIndex{

                

            case 0:

                self.view.backgroundColor = UIColor.redColor()

                

            case 1:

                self.view.backgroundColor = UIColor.yellowColor()

                

            case 2:

                self.view.backgroundColor = UIColor.blueColor()

                

            case 3:

                self.view.backgroundColor = UIColor.blackColor()

                

            default:

                self.view.backgroundColor = UIColor.whiteColor()

                

            }

            

        }

            

        func openClose(open:UISwitch){

           

    //        colorSegment?.hidden = open.on

     

            if open.on{

                colorSegment?.hidden = true

            }else{

                colorSegment?.hidden = false

            }

            

        }

     

        

        override func didReceiveMemoryWarning() {

            super.didReceiveMemoryWarning()

            // Dispose of any resources that can be recreated.

        }

        

    }

     

    效果图

  • 相关阅读:
    简单工厂和抽象工厂有什么区别?
    常用的设计模式有哪些?
    常见的HTTP协议状态码?
    数据库分库分表(sharding)系列(二) 全局主键生成策略
    关于垂直切分Vertical Sharding的粒度
    数据库分库分表(sharding)系列(四) 多数据源的事务处理
    分库分表带来的完整性和一致性问题
    [置顶] 深入探析Java线程锁机制
    为啥RESTFULL如此重要?
    hadoop核心逻辑shuffle代码分析-map端
  • 原文地址:https://www.cnblogs.com/madaha/p/4143767.html
Copyright © 2020-2023  润新知