Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I change the color as well as size of UIProgressBar in iPhone SDK

share|improve this question

3 Answers

up vote 1 down vote accepted

You could probably also hack one together using an image that looks like the progress bar at it's smallest size and then create a stretchable image with it.

UIImage *progressBarImg= [someImage stretchableImageWithLeftCapWidth:5.0 topCapHeight:0.0];

Then you could set the image as the backgroundImage for a disabled UIButton and animate the button width incrementally to indicate progress. I haven't tried this, but I think it would work.

share|improve this answer

Assuming you mean a UIProgressView, you can resize it as you would any other view, by setting the frame:

UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar];
[progressView setFrame:CGRectMake(0,0,320,10)];

or if you're using the default style, you can set the frame in the init method:

UIProgressView *progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0,0,320,10)];

As far as I know, the color of a UIProgressView cannot be changed. You'll probably have to roll your own view for that.

share|improve this answer
Is there a way to make the UIPrograssView run? – MrThys Dec 15 '09 at 9:10
what do you mean by run? like an indeterminate NSProgressIndicator? – Can Berk Güder Dec 15 '09 at 17:15

As Can noted, there is very little customization available for UIProgressView... pretty sucky. The solution I just implemented was to hack a UISlider. Here's the inspiration, from Apple's support forum.

  1. Create a new UISlider
  2. Set the setMinimumTrackImage and setMaximumTrackImage to your desired UIImage values
  3. Set the setThumbImage to nil
  4. Set the upper and lower bounds of the slider

Once this is setup and added to your UIView, use your custom method to set the value of the slider to the value you would normally have assigned to the UIPRogressView's progress.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.