IOS:在后台运行应用程序音频和手机音乐音频

时间:2013-09-04 08:15:17

标签: iphone ios audio avaudiosession

我需要我的应用程序音频仍然运行,即使它与设备音乐音频进入后台。我在这个page中尝试了代码建议,但我的应用程序仍无效。

enter image description here

  1. 将所需背景模式设为应用播放音频
  2. 设置应用程序不在后台运行到YES
  3. AppDelegate.m

    NSError *setCategoryErr = nil;
    NSError *activationErr  = nil;
    [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:&setCategoryErr];
    [[AVAudioSession sharedInstance] setActive:YES error:&activationErr];
    

1 个答案:

答案 0 :(得分:0)

在这里你可以找到一个相关的问题。

How to handle background audio playing while iOS device is locked or on another application?

我建议你看看这个教程:

http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_background-audio/

它解释了所有要遵循的不同步骤