MPMoviePlayerViewController,如果失败怎么办?
我正在创建一个应用程序来扫描条形码并提供有关扫描产品的视频信息。我遇到了这样的问题:如果视频 url 无效,MPMoviePlayerViewController 最终会给我一个白屏。如果没有视频可用,它应该返回到上一个屏幕。我该如何处理这个异常?我找不到任何委托方法等。
提前致谢,
Lewion
I'm creating an application to scan barcodes and provide video information on the scanned product. I'm running into the problem where the MPMoviePlayerViewController ends up giving me a white screen if a video url is not valid. It should just go back to the previous screen if no video is available. How do I handle this exception? I can't find any delegate methods etc..
Thanks in advance,
Lewion
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为
MPMoviePlayer
控制器注册一些通知,该控制器是MPMoviePlayerViewController
的moviePlayer
属性,这些通知应该处理这些错误情况。PlaybackDidFinish
或PreloadDidFinish
以及 SDK 4.0+ 中的一些新功能,例如StateChanged
...这些都带有userinfo
您可以从中检测错误的字典对象。You can register yourself for a few notifications for
MPMoviePlayer
controller which ismoviePlayer
property ofMPMoviePlayerViewController
, these notifications should handle these error situations.PlaybackDidFinish
orPreloadDidFinish
and couple of new ones with SDK 4.0+ , likeStateChanged
... these come withuserinfo
dicitonary object from which you can detect error(s).