iOS指定页面屏幕旋转

先说下我的需求吧,应用要求不能够旋转,但在视频播放页面要求能够旋转,实现全屏播放,同时在全屏页面调节手机屏幕的亮度和音量大小,当返回(pop)或者跳转(push)到其他页面时,取消屏幕旋转。

第一步:先实现指定页面(视频页面)能够屏幕旋转

1.在工程里面TARGETS –> General 勾选这些选项,我的项目只需要左右旋转,所有不选Upside Down

这里写图片描述

2.创建一个继承于UINavigationController的类就叫CustomNavViewController吧(这是一般操作,在开发项目时一般都会创建这样一个类,方便以后继承并且拓展方法),添加如下方法,其中VideoDetailViewController类就是你要旋转的那么个页面:

- (BOOL)shouldAutorotate
{
    return YES;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    if ([self.topViewController isKindOfClass:[VideoDetailViewController class]])
    {
        return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
    }
    return UIInterfaceOrientationMaskPortrait;
}

3.在根视图控制器中(我的根视图控制器就是继承自UITabBarController的类MainsViewController),添加如下方法:

-(BOOL)shouldAutorotate
{
UIViewController * navVC = self.selectedViewController;
if ([navVC isKindOfClass:[CustomNavViewController class]])
{
return YES;
}
return NO;
}

-(UIInterfaceOrientationMask)supportedInterfaceOrientations
{
UIViewController * vc = self.selectedViewController;
if (vc)
{
return [vc supportedInterfaceOrientations];
}
return UIInterfaceOrientationMaskPortrait;
}

-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
UIViewController * vc = self.selectedViewController;
if (vc)
{
return [vc preferredInterfaceOrientationForPresentation];
}
return UIInterfaceOrientationPortrait;
}

但是这样从横屏界面pop到上一个界面可能会存在一点小问题,所以还是需要再做一个设置,在其pop回去的那个页面里加上两行代码:
NSNumber * number = [NSNumber numberWithInt:UIInterfaceOrientationMaskPortrait];
[[UIDevice currentDevice] setValue:number forKey:@”orientation”];

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值