shinto Joseph
shinto Joseph

Reputation: 1079

UIProgressBar with streaming and Playing progress

Hai all,

in my audio streaming application i like to show the progress of downloading and playing, when i tried it with MPMoviePlayerController, it shows both progress in the same progress bar, is there any way to implement (or use) the applies default progress bar in our application ?

thanks in advance

Upvotes: 1

Views: 808

Answers (2)

luvieere
luvieere

Reputation: 37494

Use two overlapping progress bars, one being a little transparent. This way, you create the illusion of the same progress bar showing two things independently. The semi-transparent one should be on top, so you can see it.

Upvotes: 1

Grant Paul
Grant Paul

Reputation: 5902

You have three options:

  1. Implement it yourself. This may be difficult, you may have to rewrite the entire progress bar.
  2. Use class-dump, reverse engineering, and lots of time to find out what undocumented class they use -- then get rejected from the store for that :/.
  3. Give up, and just find an alternative way to display the info (two UIProgressBars?).

Upvotes: 1

Related Questions