视图更改时停止 iPad MoviePlayer 视频
我正在编写我的第一个 iPad 应用程序,可以在屏幕的一部分上播放视频。我的问题是,如果用户在视频播放时更改到另一个视图,音频将继续在后台播放。我认为我必须向“viewDidUnload”方法添加一些内容,但我不确定该怎么做。有什么想法吗?感谢您提供任何信息。
I'm writing my first iPad app that plays a video on a portion of the screen. My problem is that if the user changes to another view while the video is playing, the audio keeps playing in the background. I assume I have to add something to the "viewDidUnload" method but I'm not sure what to do. Any ideas? Thanks for any info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试添加
到 viewWillDisappear 方法中。
You can try adding
to your viewWillDisappear method.