屏幕的横竖屏支持

有时候需要根据需要,有的页面要横屏,有的要竖屏。可以通过代码来实现。

-(BOOL)shouldAutorotate{

return YES;【允许自动选择】

}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

return UIInterfaceOrientationMaskLandscape;【返回横屏】

}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {

return (UIInterfaceOrientationLandscapeLeft == toInterfaceOrientation ||

UIInterfaceOrientationLandscapeRight == toInterfaceOrientation);【支持的自动旋转的方向---》只能横屏旋转】

}

你可能感兴趣的:(屏幕的横竖屏支持)