码迷,mamicode.com
首页 > 其他好文 > 详细

UISwitch,UISegmentedControl

时间:2014-12-04 21:33:12      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

//

//  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.

    }

    

    

}

 

 

bubuko.com,布布扣bubuko.com,布布扣

UISwitch,UISegmentedControl

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/madaha/p/4143771.html

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