11

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

halfer
  • 19,824
  • 17
  • 99
  • 186
Nitish
  • 13,845
  • 28
  • 135
  • 263

1 Answers1

32

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

progressView.trackTintColor = [UIColor whiteColor];  
Isuru
  • 30,617
  • 60
  • 187
  • 303
Nitish
  • 13,845
  • 28
  • 135
  • 263