2

I am trying to customize my UIProgressView. I would like it to look like the third one down on the image:

Please can you tell me how I could acheive this.

pkamb
  • 33,281
  • 23
  • 160
  • 191
max_
  • 24,076
  • 39
  • 122
  • 211
  • I have only tried with PDProgressView: [progressView setTintColor:[UIColor colorWithRed:0.0f/255.0f green:176.0f/255.0f blue:224.0f/255.0f alpha:1.0f]]; [progressView setBackgroundColor:[UIColor colorWithRed:48.0f/255.0f green:48.0f/255.0f blue:48.0f/255.0f alpha:1.0f]]; – max_ Apr 21 '11 at 21:29

2 Answers2

4

Check out OCProgress: http://www.obsessivecode.com/projects/ocprogress/

It is very customizable, from width to height to bar color to back color to border color.

Daniel Amitay
  • 6,677
  • 7
  • 36
  • 43
1

Have you looked at this: https://github.com/PascalW/PDColoredProgressview ?

Matt Long
  • 24,438
  • 4
  • 73
  • 99
  • Yes. The background colour won't actually work on a UIProgressViewDefault progressView. – max_ Apr 21 '11 at 20:54