IOS某个ViewController禁止自动旋转

时间:2023-03-09 16:05:50
IOS某个ViewController禁止自动旋转

IOS屏幕自动旋转,强制横竖屏方法:

IOS某个ViewController禁止自动旋转
- (BOOL)shouldAutorotate
{
return YES;
} - (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskAll);// 修改这里 控制显示方向
} - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
IOS某个ViewController禁止自动旋转