Xcode9.3支持的InterfaceOrientations执行不正确

时间:2018-06-21 10:49:29

标签: ios orientation xcode9.2 xcode9.3

我的代码在Xcode9.2和Xcode9.3中没有任何变化。显然,设备定向在Xcode9.3中执行不正确。调用了SupportedInterfaceOrientations,但设备仍旋转为纵向。有人可以帮忙吗?

- (BOOL)shouldAutorotate
{
    return YES;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscape;
}

1 个答案:

答案 0 :(得分:0)

检查ViewControllers层次结构。也许您有一些接受不同旋转模式的父或子视图控制器。