有时候需要根据需要,有的页面要横屏,有的要竖屏。可以通过代码来实现。
-(BOOL)shouldAutorotate{
return YES;【允许自动选择】
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscape;【返回横屏】
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
return (UIInterfaceOrientationLandscapeLeft == toInterfaceOrientation ||
UIInterfaceOrientationLandscapeRight == toInterfaceOrientation);【支持的自动旋转的方向---》只能横屏旋转】
}