NSMediaplayer状态栏错误?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NSMediaplayer状态栏错误?相关的知识,希望对你有一定的参考价值。

我正在使用NSMediaPlayer播放我的视频。我正在使用info plist文件隐藏顶部的状态栏。播放电影后,状态栏出现(我想这是媒体播放器的一个错误。我在媒体完成此代码后尝试隐藏状态栏:

-(void)movieFinished


{
[[NSNotificationCenter defaultCenter]removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:[player moviePlayer]];
[player release];

[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent];

[[UIApplication sharedApplication] setStatusBarHidden:YES]; //this one
}

现在的问题是,在我看来有一个scrollview,里面有UIImages和scrollviews。状态栏应该有一个空格,滚动视图和子视图会向下移动一点。

这个问题有方法解决吗?也许修复NSMediaPlayer?我在网上搜索过,但也许我没有输入正确的词语,或者没有人对此有任何疑问?

答案

没关系,我找到了答案。如果您使用:

[player.moviePlayer setControlStyle:MPMovieControlStyleFullscreen];

无论您做什么,状态栏都会出现。

所以在电影结束后你调用一个带有nsnotifications的方法,在movieFinished方法中你使用这段代码来解决这个问题:

[[self view] setFrame:CGRectMake(0, -20, 1024, 768)]; // this code removes the empty space from the status bar

[[UIApplication sharedApplication] setStatusBarHidden:YES]; //this code removes the status bar

希望这有助于某人

以上是关于NSMediaplayer状态栏错误?的主要内容,如果未能解决你的问题,请参考以下文章

显示对话框片段时与状态栏重叠,仅在Android4.4中

通过底部导航栏更改片段时恢复片段状态

在底部导航栏中保存片段状态

保存片段状态操作栏选项卡

在片段中使用 CoordinatorLayout 时如何使状态栏透明

Android 全屏片段不显示导航和状态栏后面的元素