如何为AVPlayer制作搜索栏

发布于 2024-12-01 01:11:48 字数 71 浏览 4 评论 0原文

我正在制作一个 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 技术交流群。

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

发布评论

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

评论(2

り繁华旳梦境 2024-12-08 01:11:48

您可以使用 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 the currentTime of the AVPlayer.

记忆消瘦 2024-12-08 01:11:48

通过滑块值更改歌曲的当前持续时间

- (IBAction)currentTimeSliderTouchUpInside:(id)sender    
 {     
        [self.player stop];    
        self.player.currentTime = self.currentTimeSlider.value;    
        [self.player prepareToPlay];   
        [self play:self];   
 }

Change the current duration of the song by slider value

- (IBAction)currentTimeSliderTouchUpInside:(id)sender    
 {     
        [self.player stop];    
        self.player.currentTime = self.currentTimeSlider.value;    
        [self.player prepareToPlay];   
        [self play:self];   
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文