如何将音乐从我的应用程序切换到 iPod

发布于 2024-12-13 23:55:21 字数 118 浏览 0 评论 0原文

我在我的应用程序中使用 MusicPlayerController 对象来播放音乐。 我知道当 iPhone ipod 应用程序终止时,可以继续播放我的应用程序音乐。

我该怎么做?

i am using MusicPlayerController object in my app to play music.
i know that its possible to keep playing my app music when it's terminate on the iphone ipod app.

how can i do it?

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

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

发布评论

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

评论(1

云朵有点甜 2024-12-20 23:55:21

这涉及到一些事情。

您必须在两个音乐播放器(应用程序音乐播放器和 iPod 音乐播放器)之间进行选择:

+ (MPMusicPlayerController *)applicationMusicPlayer;
+ (MPMusicPlayerController *)iPodMusicPlayer;

如果您选择 iPodMusicPlayer,音乐将继续在后台播放,用户可以使用 iPod(或音乐)应用程序停止播放。

如果您选择应用程序MusicPlayer,默认情况下音乐将在您发送到后台时停止。如果你想继续玩,你必须在 Info.plist 文件中设置 UIBackgroundMode 来告诉系统你应该继续运行。

请参阅:应用状态和多任务处理Info.plist 键

There are a few things involved.

You have to choose between two music players, the application music player and the iPod music player:

+ (MPMusicPlayerController *)applicationMusicPlayer;
+ (MPMusicPlayerController *)iPodMusicPlayer;

If you choose the iPodMusicPlayer, music will continue to play in the background and the user can stop it using the iPod (or Music) app.

If you choose the applicationMusicPlayer, by default the music will stop when you get sent to the background. If you want to continue playing, you'll have to set UIBackgroundMode in your Info.plist file to tell the system you should continue to run.

See: App States and Multitasking and Info.plist keys

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