Swift - 進度條(UIProgressView)的用法_基礎使用

來源:互聯網
上載者:User
1,建立進度條 1 2 3 4 var  progressView= UIProgressView (progressViewStyle: UIProgressViewStyle . Default ) progressView.center= self .view.center progressView.progress=0.5  //預設進度50% self .view.addSubview(progressView);
2,設定進度,同時有動畫效果 1 progressView.setProgress(0.8,animated: true )
3,改變進度條顏色 1 2 progressView.progressTintColor= UIColor .greenColor()   //已有進度顏色 progressView.trackTintColor= UIColor .blueColor()   //剩餘進度顏色(即進度槽顏色)
4,設定progressView的寬度(進度條長度) 通常情況下,我們可以在初始化  progressView 的時候通過  frame 屬性設定其寬度(進度條長度)。 比如下面範例,我在螢幕中放置一個橫向寬度是200的進度條,其位置是水平置中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 import  UIKit   class  ViewController :  UIViewController  {           override  func  viewDidLoad() {          super .viewDidLoad()                    //將背景設為黑色
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.