以编程方式读取和更改音乐的已播放时间(iPod 的媒体库)?

发布于 2024-08-21 14:17:04 字数 90 浏览 8 评论 0原文

我正在创建一个音乐应用程序,非常类似于标准音乐应用程序。现在,我对他们如何使用 UISlider 读取和更改歌曲的已播放时间感到困惑。如何读取和更改歌曲的已播放时间?

I am creating a music application, much like the standard music app. Now, I am befuddled on how they were able to read and change the elapsed time of a song using a UISlider. How is it possible to read and change the elapsed time of a song?

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

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

发布评论

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

评论(1

一笔一画续写前缘 2024-08-28 14:17:04

通过在 MPMusicPlayerController 上调用 beginGeneratePlaybackNotifications 并注册 MPMusicPlayerControllerPlaybackStateDidChangeNotification 通知,您将在播放状态发生更改时收到定期更新。在该通知的处理程序中,您可以从 MPMusicPlayerController 获取 currentPlaybackTime

By calling beginGeneratingPlaybackNotifications on the MPMusicPlayerController and registering for MPMusicPlayerControllerPlaybackStateDidChangeNotification notifications, you will receive periodic updates when the playback state has changed. In the handler for that notification you can then get the currentPlaybackTime from the MPMusicPlayerController.

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