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

swfit-计时器

时间:2016-12-30 18:42:56      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:any   mem   sub   userinfo   var   black   uibutton   bsp   tar   

import UIKit

class FourVC: UIViewController {

    var label:UILabel = UILabel()
    var index : Int = 1
    var timer:Timer = Timer()
    override func viewDidLoad() {
        super.viewDidLoad()

        label = UILabel.init()
        label.frame = CGRect.init(x:100,y:100,width:200 ,height:200)
        label.text = "计时器"
        label.textColor = UIColor.black
        self.view.addSubview(label)
        
        timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(createTimer), userInfo: nil, repeats: true)
        RunLoop.current.add(timer, forMode: RunLoopMode.commonModes)
        timer.fireDate = NSDate.distantFuture

        let endTimeBtn : UIButton = UIButton()
        endTimeBtn.frame = CGRect.init(x:250,y:300,width:100 ,height:50)
        endTimeBtn.backgroundColor = UIColor.cyan
        endTimeBtn.setTitle("停止计时", for: UIControlState.normal)
        endTimeBtn.titleColor(for: UIControlState.normal)
        endTimeBtn.setTitleColor(UIColor.black, for: UIControlState.normal)
        endTimeBtn.addTarget(self, action: #selector(pressBtn1), for: UIControlEvents.touchUpInside)
        self.view.addSubview(endTimeBtn)
        
        let startTimeBtn : UIButton = UIButton()
        startTimeBtn.frame = CGRect.init(x:50,y:300,width:100 ,height:50)
        startTimeBtn.backgroundColor = UIColor.cyan
        startTimeBtn.setTitle("开始计时", for: UIControlState.normal)
        startTimeBtn.titleColor(for: UIControlState.normal)
        startTimeBtn.setTitleColor(UIColor.black, for: UIControlState.normal)
        startTimeBtn.addTarget(self, action: #selector(pressBtn), for: UIControlEvents.touchUpInside)
        self.view.addSubview(startTimeBtn)

    }
    
    func pressBtn(){
        
        //开始计时,很远的过去
        timer.fireDate = NSDate.distantPast

    }
    
    func pressBtn1(){
        //关闭计时,很远的将来
        timer.fireDate = NSDate.distantFuture

    }
    func createTimer(){
        
        index += 1
        label.text = "\(index)"
        
        if index == 11 {
            //关闭计时器
            timer.fireDate = NSDate.distantFuture
            label.text = "倒计时停止\(index)"
        }
        
    }
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

 

swfit-计时器

标签:any   mem   sub   userinfo   var   black   uibutton   bsp   tar   

原文地址:http://www.cnblogs.com/sayimba/p/6237532.html

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