在 MPMediaPickerController 中仅获取专辑标题、播放列表
我试图弄清楚如何让 MPMediaPickerController 仅显示专辑和播放列表。我可以通过 MPMediaQuery 获取列表,但不知道如何将其提供给选择器,或者让选择器使用查询,或者......
任何帮助将不胜感激(或对头部的坚实打击)如果这是一个愚蠢的问题并且无法完成)。
:bp:
I am trying to figure out how to get the MPMediaPickerController to display only albums and playlists. I can get the lists via the MPMediaQuery, but don't know how to feed that to the picker, or get the picker to use the query, or....
Any help would be greatly appreciated (or a solid whack on the head if this is a stupid question and it can't be done).
:bp:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您在文档中看到的,
MPMediaPickerController
不能以这种方式进行配置。您必须从头开始构建自己的界面(即使用MPMediaQuery
获取所需的项目,并将结果提供给自定义 UITabBarController/UINavigationController/UITableView 界面。As you can see in the documentation,
MPMediaPickerController
is not configurable in that way. You would have to build your own interface from scratch (i.e. get the items you want withMPMediaQuery
and feed the results to a custom UITabBarController/UINavigationController/UITableView interface.