according to the documentation the correct way to allow sounds to be played even if the ringer switch is set to off is like so:

 UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;

    AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(sessionCategory), &sessionCategory);

I then throughout the app play short wav files that play perfectly using

AudioServicesPlaySystemSound(sysSound)

....until the ringer is switched off and then.....silence?

No matter what I do I cannot get the sound to play if the ringer is off?

Any one ..... please?

link|improve this question

57% accept rate
feedback

1 Answer

Did you try using AudioSessionSetActive(YES); at the end?

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.