gpt4 book ai didi

iphone - 在 iPad 上,为什么 AVAudioSessionCategoryAmbient 会停止 iPod 中的音乐播放?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:23:49 24 4
gpt4 key购买 nike

以下代码应该播放声音并且不会停止 iPad 的音乐/iPod 播放的音乐。 (在 iOS 5.1 上,iPod 应用变成了音乐应用)。

它使用 AVAudioSessionCategoryAmbient 而不是 AVAudioSessionCategorySoloAmbient。但它实际上在任何一种情况下都停止了音乐。 AVAudioSessionCategoryAmbient的使用有问题吗?

NSURL *sound0URL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"0" ofType:@"aiff"]];

audioPlayer0 = [[AVAudioPlayer alloc] initWithContentsOfURL:sound0URL error:nil];

audioPlayer0.delegate = self;
[audioPlayer0 prepareToPlay];

NSError *setCategoryErr = nil;
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:&setCategoryErr];

NSLog(@"%@", setCategoryErr);

audioPlayer0.currentTime = 0;
[audioPlayer0 play];

setCategoryErr 打印为 (null) 所以应该没有错误。

最佳答案

正如我在评论中所说,似乎解决方案是在调用 AVAudioPlayer 上的 prepareToPlay 之前设置 AVAudioSession 类别。

关于iphone - 在 iPad 上,为什么 AVAudioSessionCategoryAmbient 会停止 iPod 中的音乐播放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10377959/

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