How can a progress bar be used as a seek bar???
Thanx
How can a progress bar be used as a seek bar???
Thanx
You should build a custom control for that.
There are tools to make this extremely easy. I don't want to do advertisement, but have a look at Opacity. There you can create vector drawings with paramters like one for the current progress value. And you can have this drawing exported as source code which will create a UIView or UIControl subclass (at your choice) that has a property to set the current progress.
At least that's the way I'd do this.
You want to use an UISlider
. Update its position periodically according to the playing position. Adjust your playing position whenever the slider calls its action.