IOS7 MPMoviePlayerViewController横屏显示

在应用程序中用到MPMoviePlayerViewController时,有时需要保持应用程序为竖屏状态,而视频播放器显示为横屏,如何做呢?如果采用强制横屏的方法,应用审核的时候是不会通过的,因为该方法已经被苹果禁止了。主要代码如下:

- (void)addVideoViewController
{
    MPMoviePlayerViewController *moviePlayerViewController = [[MPMoviePlayerViewController alloc] init];
    moviePlayerViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.height, self.view.bounds.size.width);
    moviePlayerViewController.view.center = CGPointMake(self.view.bounds.size.width/2, self.view.bounds.size.height/2);
    CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI/2);
    [moviePlayerViewController.view setTransform:transform];
    [self.view addSubview:moviePlayerViewController.view];
}

MPMoviePlayerViewController加入到它的父ViewController中通过

CGAffineTransformMakeRotation()方法使得视频播放器旋转90度,这样就可以横屏了,如下图:

小伙伴们!看出问题来了没有,状态栏显示了俩个,这个怎么弄呢?

其实在IOS7中,每个ViewController都会带上一个StatusBar,上面的那个StatusBar是视频播放器带的,视频播放器旋转,状态栏也跟着旋转。左侧的StatusBar是视频播放器的父ViewController带的,因为父ViewController没有旋转,所以显示在左侧。解决这个问题就需要在显示播放器的时候隐藏左侧的StatusBar,退出播放器时显示左侧的StatusBar,具体方法如下:

IOS7中就需要用到如下俩个方法:

(1) - (BOOL)prefersStatusBarHiddenNS_AVAILABLE_IOS(7_0);

(2) - (void)setNeedsStatusBarAppearanceUpdateNS_AVAILABLE_IOS(7_0);

在父ViewController中重写- (BOOL)prefersStatusBarHidden方法,主要代码如下:

- (BOOL)prefersStatusBarHidden
{
    return isHiddenStatusBar;
}

- (void)showStatusBar
{
    isHiddenStatusBar = NO;
    if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
        [self prefersStatusBarHidden];
        [self setNeedsStatusBarAppearanceUpdate];
    }
}

- (void)hideStatusBar
{
    isHiddenStatusBar = YES;
    if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
        [self prefersStatusBarHidden];
        [self setNeedsStatusBarAppearanceUpdate];
    }
}

(1) isHiddenStatusBar是定义的一个变量,判断是否隐藏StatusBar

(2) - (void)showStatusBar是自定义的一个方法,在需要显示状态栏的时候调用该方法

(3) - (void)hideStatusBar是自定义的一个方法,在需要隐藏状态栏的时候调用该方法

至此MPMoviePlayerViewController横屏显示功能就实现了。这是在IOS7上测试通过的结果,IOS6还没有找出相应的方法可以隐藏左侧的状态栏,希望有高人能告诉我答案。

时间: 2024-10-01 04:40:04

IOS7 MPMoviePlayerViewController横屏显示的相关文章

iOS7 MPMoviePlayerViewController 横屏显示

在应用程序中用到MPMoviePlayerViewController时,有时需要保持应用程序为竖屏状态,而视频播放器显示为横屏,如何做呢?如果采用强制横屏的方法,应用审核的时候是不会通过的,因为该方法已经被苹果禁止了.主要代码如下: [html] view plaincopy - (void)addVideoViewController { MPMoviePlayerViewController *moviePlayerViewController = [[MPMoviePlayerViewC

【转】IOS7 MPMoviePlayerViewController横屏显示

在应用程序中用到MPMoviePlayerViewController时,有时需要保持应用程序为竖屏状态,而视频播放器显示为横屏,如何做呢?如果采用强制横屏的方法,应用审核的时候是不会通过的,因为该方法已经被苹果禁止了.主要代码如下: [html] view plaincopy - (void)addVideoViewController { MPMoviePlayerViewController *moviePlayerViewController = [[MPMoviePlayerViewC

iOS7截取当前显示的视图

UIView的Category UISnapshotting @interface UIView (UISnapshotting) - (UIView *)snapshotViewAfterScreenUpdates:(BOOL)afterUpdates; - (UIView *)resizableSnapshotViewFromRect:(CGRect)rect afterScreenUpdates:(BOOL)afterUpdates withCapInsets:(UIEdgeInsets)

android中如何如何让dailog横屏显示

============问题描述============ 求大神赐教>>>>>>> 重谢 ============解决方案1============ 是自定义Dialog的吗?可以横屏显示的布局吗? ============解决方案2============ try 新建Activity,android:screenOrientation="landscape",以dialog方式弹出

H5页面 强制横屏显示 适配IOS和安卓

H5页面 强制横屏显示 适配IOS和安卓 <script> var evt = "onorientationchange" in window ? "orientationchange" : "resize"; $(window).resize(function(){ resize(); }); window.addEventListener(evt, resize(), false); function resize(){ var

Unity3D开发安卓应用如何设置横屏显示和竖屏显示

说起 Unity3D 开发安卓应用设置屏幕方向,大家肯定都知道在发布的时候可以设置,也就是在下图所示的位置设置,分别表示:正向竖屏显示.倒向竖屏显示.右横屏显示.左横屏显示.跟随手机自动旋转.图一是设置屏幕显示的正方向,图二是设置允许显示的方向. 而且网上基本上也都是介绍的这种办法.这种方法有个弊端,就是设置了横屏或者竖屏后,那么应用在运行过程中,就是永远是横屏或者竖屏显示,无法更改. 博主我这次在开发项目中,拿到的需求是有些场景下横屏显示,有些场景下竖屏显示,这就太尴尬了,用上面的方法根本行不

将cell转化为全屏横屏显示

- (void)fullButtonAction:(UIButton *)sender{ UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow; if ([sender.titleLabel.text isEqualToString:@"收起"]) { CGRect inWindowFrame = [self.lastSuperView convertRect:self.frame fromView:keyW

ios7 tableViewCell 图片显示不居中

@interface MyProfileViewCell : UITableViewCell @end @implementation MyProfileViewCell - (void)layoutSubviews { [super layoutSubviews]; CGRect frame = self.imageView.frame; CGFloat y = frame.origin.y; y += 1; frame.origin.y = y; self.imageView.frame =

Android之横屏竖屏显示问题

1.采用不同的布局文件 res文件下 选中layout  Ctrl+C 选中res Ctrl +V 创建layout-land横屏显示的layout 同理创建layout-port竖屏显示的layout 图片横屏竖屏 选中drawable-xhdpi Ctrl+C 选中res Ctrl + V 创建drawable-land-xhdpi 其他分辨率的也一样 字符串 values-land values-port 另外:(layout文件夹也可以使用hdip,mdip等关键字命名如layout-h