tags:

views:

42

answers:

1

When my app launches, there are rumors that I can decide if any currently playing music is stopped or not.

My goal is to use Audio Queue Services, because I believe that's the most powerful audio technology in iPhone OS.

So, could I really decide that when my app launches? How? Which one of the many audio technologies on the iPhone OS is responsible for managing this?

+3  A: 

See the class MPMusicPlayerController and the class method +iPodMusicPlayer

Hwee-Boon Yar
[[MPMusicPlayerController iPodMusicPlayer] pause]; // pauses the music
progrmr