如何为AVPlayer制作搜索栏
我正在制作一个 iPhone 应用程序,并想为 AVPlayer 制作一个搜索栏。我想用 UISlider 来实现。我该怎么做?
Im making a iPhone app and want to make a seek bar for a AVPlayer. I want to make it with a UISlider. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 AVPlayer 的
duration
属性将 AVPlayer 播放的文件的持续时间映射到 UISlider 的范围(最大值和最小值),并更改滑块位置以设置currentTime AVPlayer 的
。You can map the duration of the file being played by the AVPlayer to the UISlider's range (maximum and minimum values) using the
duration
property of AVPlayer and make changes in the slider position to set thecurrentTime
of the AVPlayer.通过滑块值更改歌曲的当前持续时间
Change the current duration of the song by slider value