我的代码在Xcode9.2和Xcode9.3中没有任何变化。显然,设备定向在Xcode9.3中执行不正确。调用了SupportedInterfaceOrientations,但设备仍旋转为纵向。有人可以帮忙吗?
- (BOOL)shouldAutorotate
{
return YES;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}
答案 0 :(得分:0)
检查ViewControllers层次结构。也许您有一些接受不同旋转模式的父或子视图控制器。