iOS横竖屏要点与横屏返回问题

1. 设置支持横竖屏 (工程已支持的情况)

主要下面三个方法

// 是否支持屏幕旋转 (返回 NO 后面俩方法不调用,后面只支持竖直方向)
-(BOOL)shouldAutorotate {
    return NO;
}
// 支持屏幕旋转的方向
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    
  //  通过设置返回的枚举值来改变屏幕旋转支持的方向 
  //(iPad上的默认返回值是UIInterfaceOrientationMaskAll,
  //  iPhone上的默认返回值是UIInterfaceOrientationMaskAllButUpsideDown)
    return UIInterfaceOrientationMaskAll;
}

// Returns interface orientation masks. (返回最优先显示的屏幕方向)
// 同时支持Portrait和Landscape方向,但想优先显示Landscape方向,那软件启动的时候就会先显示Landscape,在手机切换旋转方向的时候仍然可以在Portrait和Landscape之间切换;
// 返回现在正在显示的用户界面方向
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {

};
上述方法返回当前viewController 支持的方向. 但是, 只有两种情况下此方法才会生效:

1、当前viewController是window的rootViewController.
2、当前viewController是modal模式的. 即, 此viewController是被调用
presentModalViewController 而显示出来的.

所以:

对于非modal模式的viewController:如果不是rootViewController,则重写supportedInterfaceOrientations,preferredInterfaceOrientationForPresentation以及shouldAutorotate方法, 按照当前viewController的需要返回响应的值.如果是rootViewController,则如下重写方法:

-(UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    return self.selectedViewController.supportedInterfaceOrientations;
}
-(BOOL)shouldAutorotate
{
    return [self.selectedViewController shouldAutorotate];
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return [self.selectedViewController preferredInterfaceOrientationForPresentation];
}
UINavigationController 使用self.topViewController
UITabBarController 使用self.selectedViewController

这样就绕开了UIKit只调用rootViewController的方法的规则. 把决定权交给了当前正在显示的viewController.
对于modal
模式的viewController. 则按照需要重写supportedInterfaceOrientations,
preferredInterfaceOrientationForPresentation
以及shouldAutorotate 方法即可.

TIPS:
[UIViewController attemptRotationToDeviceOrientation]; 可以重新调用以上的方法。

2.横屏返回上个界面受影响的问题

虽然A界面不支持横屏,但是如果下个B界面支持横屏,B在横屏模式返回的话,A也变横屏了。这里有个简单的设值方法
A界面也重写方法即可

-(UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    return self.selectedViewController.supportedInterfaceOrientations;
}

2.横屏状态栏消失问题

重写

- (BOOL)prefersStatusBarHidden {
    return NO;
}

3.强制的横屏方法:

有时候想自己控制横竖屏 ,比如视图播放界面。

一.自己实现视图旋转的方式 UIview.transform :

//设置statusBar
[[UIApplication sharedApplication] setStatusBarOrientation:orientation];

//计算旋转角度
float arch;
if (orientation == UIInterfaceOrientationLandscapeLeft)
    arch = -M_PI_2;
else if (orientation == UIInterfaceOrientationLandscapeRight)
    arch = M_PI_2;
else
    arch = 0;

//对navigationController.view 进行强制旋转
self.navigationController.view.transform = CGAffineTransformMakeRotation(arch);
self.navigationController.view.bounds = UIInterfaceOrientationIsLandscape(orientation) ? CGRectMake(0, 0, SCREEN_HEIGHT, SCREEN_WIDTH) : initialBounds;

statusBar不会自己旋转,这里要首先设置statusBar的方向。ios9后setStatusBarOrientation方法废除,在ios10中测试,不设置StatusBarOrientation会自动调整

二. setOrientation的方法

setOrientation 在iOS3以后变为私有方法了,不能直接去调用此方法,否则后果就是被打回。
不能直接调用,但是可以间接的去调用,下面的方法就是利用 KVO机制去间接调用.

//首先设置UIInterfaceOrientationUnknown欺骗系统,避免可能出现直接设置无效的情况
    NSNumber *orientationUnknown = [NSNumber numberWithInt:UIInterfaceOrientationUnknown];
    [[UIDevice currentDevice] setValue:orientationUnknown forKey:@"orientation"];
    
    NSNumber *orientationTarget = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeLeft];
    [[UIDevice currentDevice] setValue:orientationTarget forKey:@"orientation"];
}

你可能感兴趣的:(iOS横竖屏要点与横屏返回问题)