user635064
user635064

Reputation: 6247

Playing audio with controls

Is there any framework or set of classes that will allow me to play an audio file(mp3) with a small view displaying controls (slider, pause/play, etc)? This image explains what I am talking about, it doesn't have to be exactly like that, but similar:

enter image description here

Thanks!

Upvotes: 0

Views: 436

Answers (1)

edc1591
edc1591

Reputation: 10182

Not that I know of. You'll just have to create them yourself. Except for the volume bar, for that you can use a MPVolumeView.

You could use a MPMoviePlayerViewController but that occupies the entire screen and you wouldn't be able to modify it. If that's ok, then a MPMoviePlayerViewController is your best bet.

Upvotes: 1

Related Questions