How to set the progress tint color in UIProgressView
You can set tint color of track and progress bar by this;
For track color:
progress.trackTintColor = [UIColor whiteColor];
Progress bar:
progress.progressTintColor = [UIColor redColor];
Hope this helps.. :)
In Swift, you can do it like this:
progressView.progressTintColor = UIColor.yellowColor()