使用xcode 6.3.2中的自动布局功能,我可以为iPad和iPhone调整视图,按钮和文本字段。但是对于颠倒来说,我的视图不会改变,任何想法我们如何使用自动布局来支持颠倒模式,而无需向视图控制器中添加任何代码。我还检查了xcode项目设置中的颠倒模式。
示例代码:-https://github.com/deepesh259nitk/OrientationSupport
屏幕截图如下。
最高
最佳答案
您还需要在要支持倒置方向的每个视图控制器中覆盖-supportedInterfaceOrientations
,因为默认情况下该方法在iPhone上返回UIInterfaceOrientationMaskAllButUpsideDown
。
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}