vote up 0 vote down star

how can i let ipod playback continue when my app is on the run..... THANKS IN ADVANCE FOR HELP//...

flag

0% accept rate

2 Answers

vote up 0 vote down

I'm pretty sure that it has nothing to do with your app (i.e. a special background service runs for the ipod), but i could be wrong...

link|flag
vote up 1 vote down

At startup you need to init an AudioSession by calling

AudioSessionInitialize(NULL,NULL,NULL,NULL);

and then set your audio category to kAudioSessionCategory_AmbientSound, like so

UInt32  sessionCategory = kAudioSessionCategory_AmbientSound;
AudioSessionSetProperty(kAudioSessionProperty_Audi oCategory, sizeof(sessionCategory), &sessionCategory);
AudioSessionSetActive(true);
link|flag
I thank you for showing concern but can you be a little more specific of what to do... i'm sort of a newbie..... i'll be thankful – valiantb Jul 10 at 4:00
sure, I added a link to some code. – Rhythmic Fistman Jul 10 at 7:25

Your Answer

Get an OpenID
or

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