0

My application (VoIP one) is using kAudioSessionCategory_PlayAndRecord category. Everything is working perfect expecting the fact that When calling AudioOutputUnitStart the Music App is replaced by my application.

Basically if I double tap the home button and flip to the music app, I can't see the default music app, instead I can see my application log near the music controls.

Anybody knows what can be?

tkanzakic
  • 5,499
  • 16
  • 34
  • 41
silviu
  • 179
  • 3
  • 10

1 Answers1

0

Check if you call this somewhere

[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[self becomeFirstResponder];

This may cause your app to appear in the music control bar

onmyway133
  • 45,645
  • 31
  • 257
  • 263