适用于 iPhone 应用程序的 UIAudioPickerController?

发布于 2024-09-11 16:24:37 字数 137 浏览 6 评论 0原文

不知道该怎么称呼它,但我想为用户提供一种从我的应用程序中选择和控制他们的音乐的方法。我见过一些提供“iPod”按钮的应用程序,该按钮似乎可以调出 iPod 应用程序。这是像 UIImagePickerController 这样的内置控件还是只是复制了所有功能?

Not sure what to call this, but I'd like to offer a way for users to pick and control their music from within my app. I've seen a few apps that offer an "iPod" button that appears to bring up the iPod app. Is this a built in control like the UIImagePickerController or have they simply duplicated all the functionality?

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

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

发布评论

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

评论(2

葮薆情 2024-09-18 16:24:37

查看 MediaPlayer 框架。特别是,您正在谈论 MPMediaPickerController

Check out the MediaPlayer framework. In particular, you're talking about the MPMediaPickerController

半衾梦 2024-09-18 16:24:37

我在 Couch to 5k 中所做的是插入一个带有工具栏、标签和图像视图的 UIView 。工具栏有用于控制 iPod 音乐播放器的标准按钮。然后我使用 MPMusicPlayerController 来控制 iPod 音乐播放。

下面是一些获取 iPod 音乐播放器和正在播放的内容的示例代码:

musicPlayer = [MPMusicPlayerController iPodMusicPlayer];
item = musicPlayer.nowPlayingItem;

然后我使用 Apple 文档中关于 MPMusicPlayerController 提供的代码注册 NSNotification。

What I'm doing in Couch to 5k is inserting a UIView with a toolbar, labels, and an image view. The toolbar has the standard buttons for controlling the iPod music player. Then I'm using MPMusicPlayerController to control the iPod music playback.

Here's some sample code to get the iPod music player and what's playing:

musicPlayer = [MPMusicPlayerController iPodMusicPlayer];
item = musicPlayer.nowPlayingItem;

And then I register for NSNotification using the code provided in Apple's documentation on MPMusicPlayerController.

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