NSMediaplayer状态栏错误?

问题描述 投票:0回答:1

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

xcode video ios5 media-player media
1个回答
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

希望这有助于某人

© www.soinside.com 2019 - 2024. All rights reserved.