I have music playing within my application using a MPMusicPlayerController, using iPodMusicPlayer (also tried applicationMusicPlayer). When I play a sound using AVAudioPlayer my music from my MPMusicPlayerController will stop. Is there a way to have the MPMusicPlayerController and the AVAudioPlayer play sounds simultaneously?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Hey, found the solution on the web. Write these 2 lines somewhere, I did it in application:didFinishLaunchingWithOptions
Must admit I didn't delve into the details, but it works... Good luck! Oded. |
|||
|
|
|
Oded Ben Dov's solution does the job, but you might not want to change your session category. For example, if you want your audio to keep playing while the screen is locked, you need the Playback category. In that case, you can apply this category override instead:
|
|||
|
|
