IOS6横屏
只支持portait,不能旋转:
-(BOOL)shouldAutorotate
{
return NO;
}
支持旋转:
-(BOOL)shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInte易做图ceOrientations{
return UIInte易做图ceOrientationMaskLandscape; //UIInte易做图ceOrientationMaskLandscape、UIInte易做图ceOrientationMaskAll、UIInte易做图ceOrientationMaskAllButUpsideDown
}
考虑到兼容低版本,最好加上:
-(BOOL)shouldAutorotateToInte易做图ceOrientation:(UIInte易做图ceOrientation)toInte易做图ceOrientation
{
return YES;
}
简单说明:
UIInte易做图ceOrientationMaskLandscape 支持左右横屏
UIInte易做图ceOrientationMaskAll 支持四个方向旋转
UIInte易做图ceOrientationMaskAllButUpsideDown 支持除了UpsideDown以外的旋转
补充:移动开发 , IOS ,