您好,登錄后才能下訂單哦!
UIProgressView進度條的基本使用 UIProgressView *progressView=[[UIProgressView alloc]initWithProgressViewStyle:UIProgressViewStyleDefault]; //修改UIProgressView控件的大小 CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 3.0f); progressView = transform; //設置layer的顏色和邊框 progressView.layer.cornerRadius = 3.0f; progressView.layer.borderColor = [UIColor colorWithString:@"#64b3a0"].CGColor; progressView.layer.borderWidth = 0.5f; progressView.layer.masksToBounds = YES; //進度條的顏色 progressView.trackTintColor = [UIColor whiteColor]; progressView.progressTintColor=[UIColor colorWithString:@"#64b3a0"] progressView.progress=0.9;(0.0-1.0);之間 [self.contentView addSubview:progressView];
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。