AddMusic 示例 Ipod 库访问

发布于 2024-08-23 14:13:01 字数 1435 浏览 7 评论 0原文

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

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

发布评论

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

评论(1

梦屿孤独相伴 2024-08-30 14:13:01

您不需要从示例中复制任何特定文件,只需复制一些函数即可。

要选择您使用的音乐 MPMediaPickerController ,查看 MainViewController.m 中的 AddMusicOrShowMusic 以了解如何实例化它以及需要实现哪些委托方法。

您需要用来播放音乐的重要类是 MPMusicPlayerController。在 MainViewController.m 中,您将看到需要实现的方法以及如何使用它,例如,请参阅 - (IBAction) playOrPauseMusic: (id)sender { 。

本质上,您将获取 MPMediaPickerController 返回的媒体项目,并在 MPMediaPickerController 上调用 setQueueWithItemCollection 来对音乐进行排队。之后,这实际上只是调用播放/暂停/等并更新界面的情况。

您需要的代码都在那里,您只需提取正确的部分即可。

You don't need to copy any specific files from the example, just some of the functions.

To pick the music you use MPMediaPickerController , look at AddMusicOrShowMusic in MainViewController.m to see how to instantiate that and what delegate methods you need to implement.

The important class you need to use to play the music is MPMusicPlayerController. In MainViewController.m you'll see the methods you need to implement and how to use it, see - (IBAction) playOrPauseMusic: (id)sender { for example.

Essentially you'll take the media items returned by MPMediaPickerController and call setQueueWithItemCollection on the MPMediaPickerController to queue up the music. After that it's really just a case of calling play/pause/etc and updating your interface.

The code you need is all in there, you just need to pull out the right bits.

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