NSMediaplayer状态栏错误?

时间:2012-03-23 22:03:22

标签: xcode video ios5 media-player media

我正在使用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?我在网上搜索过,但也许我没有输入正确的词语,或者没有人对此有任何疑问?

1 个答案:

答案 0 :(得分:0)

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

[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

希望这有助于某人