使用 MPMediaPickerController 直接打开播放列表选项卡的可能性
我正在实现一个基本应用程序,它允许在应用程序中从音乐中选择播放列表。我做到了。但我的问题是它直接显示“音乐”选项卡。但根据我的要求,当用户进入该视图时,我需要显示播放列表选项卡。以下是我的代码,
MPMediaPickerController *picker =
[[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeMusic];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
picker.prompt = NSLocalizedString (@"Select any song from the list", @"Prompt to user to choose some songs to play");
// The media item picker uses the default UI style, so it needs a default-style
// status bar to match it visually
[[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleDefault animated: YES];
[self presentModalViewController: picker animated: YES];
[picker release];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据苹果的文档,在 MPMediaPickerController 的播放列表部分中打开是不可能的
,我已经在这里回答了:
您将需要使用媒体查询(按歌曲、艺术家等)来实现自己的选择器。
您将需要使用媒体查询(按歌曲、艺术家等)来实现自己的选择器。
我建议阅读: “使用 iPod 库”
以及更具体的内容:
MPMediaPlaylist 类参考
opening in the playlist section of MPMediaPickerController is not possible according to Apple's documentation
as already i answered here:
You will need to implement your own picker, using media queries (by song ,by artist, etc).
You will need to implement your own picker, using media queries (by song ,by artist, etc).
I suggest reading: “Using the iPod Library” in Apple's "iPod Library Access Programming Guide"
and more specific:
MPMediaPlaylist Class Ref