App with AVPlayer plays mp4 interrupt iPod music after launched

后端 未结 2 1862
南方客
南方客 2021-01-14 15:06

My App plays mp4 using AVPlayer, when my application finish launching, it interrupt the iPod music, although I have set the audio session to allow mix with others in

<
2条回答
  •  北恋
    北恋 (楼主)
    2021-01-14 15:57

    In iOS 6/7 you can use AVAudioSession because AudioSessionSetProperty is deprecated.

    [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionMixWithOthers error:nil];
    

提交回复
热议问题