iOS旋屏控制

在做App时,经常需要控制屏幕的方向,比如有些视图不能横屏,有些地方需要根据手机来旋屏。


自己在网上搜相关的资料时,看到很多地方说去控制 shouldAutorotateToInterfaceOrientation 这个方法。然而这个方法在iOS5以后就没有用了。


对于旋屏现在主要是这两个方法(当前iOS8)


- (BOOL)shouldAutorotate{
    return YES;
}


-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskAllButUpsideDown;
}


首先,shouldAutorotate是决定程序是否随着手机来旋屏的;
其次,supportedInterfaceOrientations 这个是控制旋屏的方向,比如假如只需要向左的时候旋屏,只需要 UIInterfaceOrientationLandscapeLeft即可。

你可能感兴趣的:(iOS旋屏控制)