I'm implementing an iphone app that plays sounds from time to time. I wanted it to duck any possible music running in the ipod.
I've looked into the Audio Sessions Programing Guide and this seems rather easy to implement - it's just changing properties on the Audio Session. The problem is, I would like the ipod to duck only during the playback of my sound and not all the time my app is running.
What is the correct way to duck the ipod music only during my app's playback?
So far, the workaround I've found is to activate and deactivate my Audio Session when I start and stop playback. Is this the right/best way to do it?