gpt4 book ai didi

iphone - iOS4 - iPhone模拟器的背景音频

转载 作者:太空狗 更新时间:2023-10-30 03:50:59 25 4
gpt4 key购买 nike

我尝试通过设置 UIBackgroundModes 属性并按照 Joshua Weinberg 的建议激活 Audio Session 来实现继续在后台播放的播放音频,但未成功,但它在模拟器上不起作用,并且我没有机会在装有 iOS4 的设备上进行测试。我了解到模拟器可能存在问题,这可能吗?有没有人编写过可以在模拟器上运行的代码?谢谢并抱歉,因为我最初将其发布为答案(因为没有启用“添加评论”链接)。

最佳答案

空性

它通过实现此代码为我工作。不管出于什么原因,这在模拟器中都不起作用。因此,如果您的代码相同或相似,请相信它在我安装了 iOS4 的 iPod Touch 上运行得非常出色。

App Delegate.m (either in init or applicationDidFinishLaunching)

- (id) init {   

// allows you to play in the background when app is suspended in iOS4
[[AVAudioSession sharedInstance] setDelegate: self];
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];

}

当然,请务必将 UIBackgroundModes 键设置为 audio,如前所述。

祝你好运

罗布

关于iphone - iOS4 - iPhone模拟器的背景音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3203928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com