Why do AVAudioPlayer continue playing after applcation comes from background mode, even if the player had been paused before app went to background?

In common I wonder why AVAudioPlayer automatically continue playing after application comes from background (cause when app going to background - i can't catch as beginInterruption as other delegates of AVAudioPlayer and AVAudioSession). ps:sorry for my english:)

link|improve this question

75% accept rate
feedback

1 Answer

when you push the app in background the app becomes dormant i.e. it is no longer active. This is the reason that you are unable to catch beginInterruption. When the app is brought in foreground the app becomes active again, this is why AVAudioPlayer starts playing again..I hope this helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.