iPhone SDK - 如何隐藏和显示状态栏以及 MPMoviePlayerController 控件?

发布于 2024-10-02 06:52:33 字数 260 浏览 7 评论 0原文

我正在使用 MPMoviePlayerViewController 来播放电影。我已将 MPMoviePlayerController 设置为全屏。现在,我想在全屏控件开始淡出时隐藏状态栏,并在控件可见时显示状态栏。

如果我使用 UIWebView,所有这些都会自动发生。状态栏与控件一起淡入和淡出。您将如何使用 MPMoviePlayerController 来做到这一点?

感谢您的任何帮助。

I'm using a MPMoviePlayerViewController to show a movie. I have set the MPMoviePlayerController to fullscreen. Now I want to hide the status bar as soon as the fullscreen controls start to fade out and show the status bar if the controls are visible.

If I'm using a UIWebView all this happens automatically. The status bar fades in and out together with the controls. How would you do that with a MPMoviePlayerController?

Thanks for any help.

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

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

发布评论

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

评论(3

倒数 2024-10-09 06:52:33

您可以使用 隐藏状态栏

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];

和 显示状态栏

[[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES];

You can use to hide status bar

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];

and to show status bar

[[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES];
蒲公英的约定 2024-10-09 06:52:33

一旦您使用 MPMoviePlayerController 属性 controlStyle 并将其设置为 MPMovieControlStyleFullscreen,这种情况就会自动发生。

player.controlStyle = MPMovieControlStyleFullscreen;

This will happen automagically for you once you use the MPMoviePlayerController property controlStyle and set to MPMovieControlStyleFullscreen.

player.controlStyle = MPMovieControlStyleFullscreen;
爱*していゐ 2024-10-09 06:52:33
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];

动画位现已弃用,因此只需使用:

[[UIApplication sharedApplication] setStatusBarHidden:YES];
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];

The animated bit is now deprecated so just use:

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