使用 MPMoviePlayerController 进行 Airplay 和重复模式
我无法通过播放来重复视频。
moviePlayer.repeatMode = MPMovieRepeatModeOne;
[moviePlayer setAllowsAirPlay:YES];
这似乎不起作用,它到达视频的末尾并且播放就停止了。有谁知道为什么,或者如何让它发挥作用?
谢谢!
I am unable to get airplay to repeat a video.
moviePlayer.repeatMode = MPMovieRepeatModeOne;
[moviePlayer setAllowsAirPlay:YES];
This does not seem to work, it gets to the end of a video and airplay just stops. Does anyone know why, or how to get this to work?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有一些带有 Airplay 功能的应用程序,我不需要做任何花哨的事情。
不过我启用了自动播放。
moviePlayer.shouldAutoplay = YES;
尝试一下也许可以解决您的问题。
I have a few apps with airplay and I didn't have to do anything fancy.
However I enabled auto play.
moviePlayer.shouldAutoplay = YES;
Try it maybe it solves your issue.