MPMoviePlayerController 通知问题

发布于 2024-12-06 12:57:13 字数 118 浏览 2 评论 0原文

各位晚上好! 我是否可以在 MPMoviePlayerController 播放视频时收到通知。我的意思是,如果我能够每秒、毫秒等得到它。 我有一个视频当前播放时间的指示器,我希望它不断更新。

先感谢您。

Good Evening Fellas!
Is it possible for me to get a notification from an MPMoviePlayerController while it is playing a video. I mean, if i am able to get it every second, millisecond etc.
I have an indicator for the video current playback time that i want it updated continuously.

Thank you in advance.

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

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

发布评论

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

评论(1

筑梦 2024-12-13 12:57:13

最简单的方法是自己设置一个重复计时器,并用它来更新您的显示。例如:

[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateTime:) userInfo:nil repeats:YES];  

The simplest way is going to be to set up a repeating timer yourself, and use that to update your display. e.g.:

[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateTime:) userInfo:nil repeats:YES];  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文