Reputation: 6247
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:
Thanks!
Upvotes: 0
Views: 436
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