使用控件播放音频
是否有任何框架或类集允许我使用显示控件(滑块、暂停/播放等)的小视图来播放音频文件(mp3)? 这张图片解释了我在说什么,它不必完全一样,但类似:
谢谢!
Is there any framework or set of classes that will allow me to play an audio file(mp3) with a small view displaying controls (slider, pause/play, etc)?
This image explains what I am talking about, it doesn't have to be exactly like that, but similar:
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知没有。您只需要自己创建它们。除了音量栏之外,您还可以使用
MPVolumeView
。您可以使用
MPMoviePlayerViewController
但它会占据整个屏幕,并且您无法对其进行修改。如果没问题,那么MPMoviePlayerViewController
是您最好的选择。Not that I know of. You'll just have to create them yourself. Except for the volume bar, for that you can use a
MPVolumeView
.You could use a
MPMoviePlayerViewController
but that occupies the entire screen and you wouldn't be able to modify it. If that's ok, then aMPMoviePlayerViewController
is your best bet.