向全屏电影添加自定义控件
是否可以向以全屏模式播放的电影添加自定义控件(使用 MPMoviePlayerController )?我在一些流媒体应用程序中看到了这一点,我很好奇它是如何完成的。
Is it possible to add custom controls to a movie playing in full-screen mode ( with MPMoviePlayerController )? I've seen this in a few streaming apps, and I'm curious how it is done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以关闭播放器的标准控件并创建在播放器上调用播放、暂停等的自定义按钮。如果将全屏设置为“否”,则可以让播放器框出您想要的任何内容(全屏)并将自定义控件放在顶部。
比如:
或者其他什么...
You can turn off the standard controls of the player and create custom buttons that call play, pause etc on the player. If you set fullscreen to NO, you can make the players frame whatever you want (fullscreen) and layer your custom controls on top.
Something like:
or whatever...