Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to play a background sound all the time as long as my application is running. I tried to use AVAudioPlayer for this purpose. However, it stops playing the sound as soon as the iPhone goes to sleep mode.

Could you let me know how can I fix this problem?

Thanks

share|improve this question
Dupe of stackoverflow.com/questions/908469/… – ceejayoz May 26 '09 at 3:00

3 Answers

up vote 5 down vote accepted

You may need to set an audio session category. From the "iPhone Application Programming Guide"

A category is a key that identifies a set of audio behaviors for your application. By setting a category, you indicate your audio intentions to iPhone OS, such as whether your audio should continue when the screen locks.

The details about each category are listed at "Audio Session Categories"

share|improve this answer
Thanks. It works. – ebaccount May 26 '09 at 18:06

In your particular example you may try the following. It should work right out of the box.

// Registers this class as the delegate of the audio session.
[[AVAudioSession sharedInstance] setDelegate: self];	
// Allow the app sound to continue to play when the screen is locked.
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
share|improve this answer

well this solution may also be helpfull

    [[AVAudioSession sharedInstance] setDelegate: self]; 
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil]; 
[[AVAudioSession sharedInstance] setActive: YES error: nil];

referenced from http://www.mindyourcode.com/ios/iphone/how-to-play-audio-in-iphone-sleep-mode/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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