iPhone SDK - 如何隐藏和显示状态栏以及 MPMoviePlayerController 控件?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 隐藏状态栏
和 显示状态栏
You can use to hide status bar
and to show status bar
一旦您使用
MPMoviePlayerController
属性controlStyle
并将其设置为MPMovieControlStyleFullscreen
,这种情况就会自动发生。This will happen automagically for you once you use the
MPMoviePlayerController
propertycontrolStyle
and set toMPMovieControlStyleFullscreen
.动画位现已弃用,因此只需使用:
The animated bit is now deprecated so just use: