I want to hear a recorded file when my iphone is on silent mode. For that I have implemented the following code.
-(void)viewWillAppear:(BOOL)animated{
AudioSessionInitialize (NULL, NULL, NULL, NULL);
AudioSessionSetActive(true);
// Allow playback even if Ring/Silent switch is on mute
UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty (kAudioSessionProperty_AudioCategory,
sizeof(sessionCategory),&sessionCategory);
}
I am unable to hear high pitched sound in iphone and in my ipad the sound effect button is enabled even when I am not able to hear any sound.
Before implementing above code I was able to hear recorded file. If you have any idea or code then share it
thanx in advance...