Swift 进度条 UIProgressView

//  进度条 UIProgressView  顾名思义用来显示进度的,如音乐,视频的播放进度,和文件的上传下载进度等

import UIKit

class ViewController: UIViewController {

    var myProgressView:UIProgressView!
    var timer:NSTimer!
    var proValue:Double!


    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        /**
         1,创建进度条
         */

        let progressView = UIProgressView(progressViewStyle:UIProgressViewStyle.Default)
        progressView.center = self.view.center
        // 设置进度条进度(0.0-1.0之间,默认为0.0)
        progressView.progress = 0.0
        self.view.addSubview(progressView);

        /**
         2,设置进度,同时有动画效果
         */
        progressView.setProgress(0.8, animated: true)

        /**
         3,改变进度条的颜色
         */
        //  设置已走过的进度条颜色
        progressView.progressTintColor = UIColor.greenColor()
        //  设置未走过进度的进度条颜色
        progressView.trackTintColor = UIColor.blueColor()

        /**
         4,使用计时器和按钮让进度条做动画
         */

        myProgressView = UIProgressView(frame:CGRectMake(100, 50, 150, 20))
        myProgressView.progressViewStyle = .Default
        self.view.addSubview(myProgressView);

        // 按钮
        let button = UIButton(type:.Custom)
        button.frame = CGRectMake(10, 20, 60, 60)
        button.setTitle("点我", forState: .Normal)
        button.backgroundColor = UIColor.blackColor()
        button.addTarget(self, action: #selector(buttonAction(_:)), forControlEvents: .TouchUpInside)
        self.view.addSubview(button)


    }

    // 按钮响应事件
    func buttonAction(sender:UIButton) {

        proValue = 0;
        //利用计时器,每隔1秒调用一次(changeProgress)
        timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: #selector(changeProgress), userInfo: nil, repeats: true)

    }
    // 计时器响应事件
    func changeProgress() {

        proValue = proValue + 1.0 // 改变ProValue的值

        if proValue > 5 {
            // 停止使用计时器
            print("停止使用计时器")
            timer.invalidate()
        } else {
            myProgressView.setProgress((Float)(proValue/5), animated: true) // 重置进度条
        }
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值