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