zoukankan      html  css  js  c++  java
  • UI<08>

    //声明对象
    @property (nonatomic,strong) UIProgressView *progressview;
     
     self.progressview = [[UIProgressView alloc] init];
        //设置属性
        self.progressview.backgroundColor = [UIColor grayColor];
        self.progressview.alpha = 0.8;
        self.progressview.frame = CGRectMake((self.view.frame.size.width-150)/2.0,self.view.frame.size.height/2.0, 150, 2);
        //设置风格
        self.progressview.progressViewStyle = UIProgressViewStyleDefault;
        //设置当前进度(0~1)float 类型
        self.progressview.progress = 0.7;
        //显示填充部分颜色
        self.progressview.progressTintColor = [UIColor blueColor];
        //显示未填充部分的颜色
        self.progressview.trackTintColor = [UIColor greenColor];
        //设置填充进度条的部分的图像
        //[self.progressview setProgressImage:[UIImage imageNamed:@""]];
        //未填充的轨道部分的图像
        //[self.progressview setTrackImage:[UIImage imageNamed:@""]];
     
        [self.view addSubview:self.progressview];
     
  • 相关阅读:
    Qt ini文件
    Qt我的文档 桌面路径
    windows zlib库编译步骤
    环形缓冲区
    openssl生成随机数
    怎样安装Scrapy
    CentOS7怎样安装GoAccess1.3
    Docker创建数据卷容器
    Docker创建数据卷
    Docker创建容器
  • 原文地址:https://www.cnblogs.com/iQingYang/p/6689677.html
Copyright © 2011-2022 走看看