Search code examples
iphonecocoa-touchuikituiprogressview

UIProgressView: How to get the old style?


I'm searching for the old style of the UIProgressView:

alt text http://img.skitch.com/20090620-dagnbt6eh2s884nfkbkqgne1re.jpg

The only UIProgressViewStyle, I'm able to present is this:

alt text http://img.skitch.com/20090620-ewujnw3r62qnb91qpbdh8iktne.jpg

Is the old one still available? Setting the property UIProgressViewStyle always leads to the blue UIProgressView.


Solution

  • For what it'a worth, another way of accessing the old-style progress bar is to create a UIProgressView control in the usual way. As of iOS 4.1, you can get the old appearance by setting the progress view's style to the undocumented value of 100.

    This avoids using an undocumented class, or even calling undocumented methods. However, I'm sure Apple still won't approve.. ;-)

    Dave