gpt4 book ai didi

ios - 关闭屏幕时 AVPlayer 停止播放音乐

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:56:48 28 4
gpt4 key购买 nike

我的项目与音乐有关,我在关闭屏幕时停止播放音乐时遇到问题。虽然我注册了背景模式(音频),但有时当我关闭屏幕时,AVPlayer 停止播放音乐并在打开屏幕时再次播放。

我花了很多时间,但我知道为什么会这样。

最佳答案

仅添加audio 背景模式是不够的。您还必须设置播放 Audio Session 类别,如 described in Apple QA1668 :

A: You must declare your app plays audible content while in the background, and assign an appropriate category to your audio session.

#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>

AVAudioSession *audioSession = [AVAudioSession sharedInstance];

NSError *setCategoryError = nil;
BOOL success = [audioSession setCategory:AVAudioSessionCategoryPlayback error:&setCategoryError];
if (!success) { /* handle the error condition */ }

NSError *activationError = nil;
success = [audioSession setActive:YES error:&activationError];
if (!success) { /* handle the error condition */ }

关于ios - 关闭屏幕时 AVPlayer 停止播放音乐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40083211/

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