首页 > 移动平台 > 详细

iOS开篇——UI之ProgressView(进度条)

时间:2015-11-24 06:12:05      阅读:253      评论:0      收藏:0      [点我收藏+]

创建ProgressView

    UIProgressView * progressView = [[UIProgressView alloc]initWithFrame:CGRectMake(50, 100, 200, 10)];
    
    progressView.progressViewStyle = UIProgressViewStyleDefault;
    /*
     typedef NS_ENUM(NSInteger, UIProgressViewStyle) {
     UIProgressViewStyleDefault,     // normal progress bar
     UIProgressViewStyleBar __TVOS_PROHIBITED,     // for use in a toolbar
     };
     */
    progressView.progress = 0;
    
    
    //走过的颜色
    progressView.progressTintColor = [UIColor redColor];
    
    //本身的颜色
    progressView.trackTintColor = [UIColor greenColor];
    
    
    [self.view addSubview:progressView];

使用中 progress值改变造成进度条往前走   

iOS开篇——UI之ProgressView(进度条)

原文:http://www.cnblogs.com/gwkiOS/p/4990249.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!