For video playback, I’m using MPMoviePlayerController, which provides a new user interface. Is there an equivalent for audio playback? I cannot get the MPMoviePlayerController to play an MP3 file.
For video playback, I’m using MPMoviePlayerController, which provides a new user interface. Is there
Share
AVAudioPlayer might suit your needs. Although it does not provide the GUI elements in the way that MPMoviePlayerController does, it provides a high-level API that would be easy to combine with custom UI elements.
Additionally, you may be able to utilize Apple’s sample project avTouch to see how it’s used (or even include in your own project).