Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIProgressView unprogressed color

I have a UIProgressView which I want to look like this image. I have set the progress color but I am not sure to set unprogressed color (white color in image).

enter image description here

like image 557
Nitish Avatar asked Jun 29 '12 07:06

Nitish


1 Answers

Here is the simple solution I myself found on exploring properties for UIProgressView :

progressView.trackTintColor = [UIColor whiteColor];  
like image 161
Nitish Avatar answered Nov 02 '22 11:11

Nitish