为什么我的 iOS 应用程序中的音量不跟随硬件控制?

发布于 2025-01-08 12:35:19 字数 119 浏览 0 评论 0原文

我的 iPad 应用程序使用 AVAudioPlayer 来播放背景音乐。当我想通过调节 iPad 边缘的音量按钮(硬件)来改变音量时,声音仍然像以前一样响亮。

为什么会这样?

感谢您的帮助!

My iPad app uses AVAudioPlayer to play background music. When I want change the volume by adjusting the volume button (hardware) that rim of iPad, it still sound as loud as it was.

Why it that?

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃气十足 2025-01-15 12:35:19

你设置了AudioSession类别吗?

NSError* error = nil;

if ( ![[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:&error] )
    NSLog(@"%@", [error description]);

Did you set the AudioSession category?

NSError* error = nil;

if ( ![[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:&error] )
    NSLog(@"%@", [error description]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文