MPMovieFinishReasonPlaybackError 读取错误日志 - Objective-C

发布于 2024-12-07 23:58:22 字数 268 浏览 0 评论 0原文

我正在使用 MPMoviePlayerController 来播放视频文件。有些电影没有播放。我刚刚收到 MPMovieFinishReasonPlaybackError。但由于某些原因我无法读取错误日志。 这是代码:

 case MPMovieFinishReasonPlaybackError:
    {
       NSLog(@"%@",moviePlayer.errorLog);
    }
break;

错误日志为空。如何读取错误日志?

I'm using MPMoviePlayerController to play video files. Some movies are not playing. I just recieve MPMovieFinishReasonPlaybackError. But for some reasons I can't read error log.
Here is code:

 case MPMovieFinishReasonPlaybackError:
    {
       NSLog(@"%@",moviePlayer.errorLog);
    }
break;

Error log is null. How to read Error log?

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

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

发布评论

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

评论(1

挽清梦 2024-12-14 23:58:22

您确定正确访问 NSError 对象吗?
如果发生错误,通知将包含一个 NSError 对象,可使用通知的 userInfo 字典中的 @"error" 键来使用。
http://developer.apple.com/库/ios/#documentation/mediaplayer/reference/MPMoviePlayerController_Class/Reference/Reference.html

Are you sure you are accessing the NSError object correctly?
In case of an error, the notification contains an NSError object available using the @"error" key in the notification's userInfo dictionary.
http://developer.apple.com/library/ios/#documentation/mediaplayer/reference/MPMoviePlayerController_Class/Reference/Reference.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文