当我的应用程序在后台播放音频时,如何用我的应用程序图标替换 iPod?

发布于 2024-09-14 14:12:50 字数 112 浏览 3 评论 0原文

我(和你)知道如何在后台播放音频。

但我的问题是这样的 某些音乐播放应用程序在后台播放音频时会用其图标替换第一个后台应用程序页面上显示的 iPod 图标。

我怎样才能做到这一点?

I (and you) know how to play audio in background.

But my question is like that,
some music play apps replace iPod icon which is shown on the first background app page with their icon while they are playing audio in background.

How can I do that?

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

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

发布评论

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

评论(2

趁年轻赶紧闹 2024-09-21 14:12:50

我们可以使用 AudioSession 来完成此操作,如以下代码所示。

AudioSessionInitialize (
                         NULL,    // 'NULL' to use the default (main) run loop
                         NULL,    // 'NULL' to use the default run loop mode
                         NULL,    //  a reference to your interruption callback
                         NULL     //  data to pass to your interruption listener callback
                              );

UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty ( kAudioSessionProperty_AudioCategory, sizeof (sessionCategory), &sessionCategory );
AudioSessionSetActive(true);

We can do it using AudioSession like the following code.

AudioSessionInitialize (
                         NULL,    // 'NULL' to use the default (main) run loop
                         NULL,    // 'NULL' to use the default run loop mode
                         NULL,    //  a reference to your interruption callback
                         NULL     //  data to pass to your interruption listener callback
                              );

UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty ( kAudioSessionProperty_AudioCategory, sizeof (sessionCategory), &sessionCategory );
AudioSessionSetActive(true);
牵强ㄟ 2024-09-21 14:12:50

这是文档:

http://developer. apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/RemoteControl/RemoteControl.html

但请注意,只有当您的应用程序中有活动的音频会话时,它才会起作用。

我将其与带有 AVAudioSessionCategoryPlayback 类别和 AVAudioPlayer 的 AVAudioSession 一起使用,并且“远程控制”仅在我激活 AVAudioSession 并创建 AVAudioPlayer 对象时才起作用。

Here's the documentation:

http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/RemoteControl/RemoteControl.html

Notice however, that it'll work only when you have active audio session in your application.

I'm using it with AVAudioSession with AVAudioSessionCategoryPlayback category and AVAudioPlayer and "remote controls" work only when I have AVAudioSession active and AVAudioPlayer object created.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文