我试图用 AVPlayer 的当前时间更新 UISlider

发布于 2024-11-30 12:00:12 字数 256 浏览 2 评论 0原文

我正在尝试使用 AVPlayer 的当前时间更新 UISlider。我使用 NSTimer 每 1 秒使用以下代码调用一个方法:

CMTimeuration = audioPlayer.currentTime; 浮动秒 = CMTimeGetSeconds(持续时间); NSLog(@"持续时间:%.2f",秒); nowPlayingSlider.value = secondary;

时间记录正确,但 uislider 永远不会更新。

I'm trying to update a UISlider with the current time from a AVPlayer. Im using a NSTimer to call a method with this code every 1 second:

CMTime duration = audioPlayer.currentTime;
float seconds = CMTimeGetSeconds(duration);
NSLog(@"duration: %.2f", seconds);
nowPlayingSlider.value = seconds;

The Times being logged right but the uislider never updates.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

古镇旧梦 2024-12-07 12:00:12

对于 UISlider,我总是使用:

[theSlider setValue:value animated:YES];

并且它对我来说效果很好。为什么你想要一个滑块来更新时间? UIProgressView 可能确实符合您的要求。希望有帮助!

For a UISlider, I always use:

[theSlider setValue:value animated:YES];

and, it works fine for me. Why do you want a Slider to update the time though? A UIProgressView could probably do want you want. Hope that helps!

焚却相思 2024-12-07 12:00:12

确保将 UISlider 的 MaximumValue 属性设置为媒体的持续时间。默认为 1.0。

Make sure you set the maximumValue property of the UISlider to the duration of the media. It defaults to 1.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文