上下颠倒 - iOS Xcode 在使用自动布局时不工作
Upside down - iOS Xcode not working while using autolayout
使用 xcode 6.3.2 中的自动布局功能,我可以调整 iPad 和 iPhone 的视图、按钮和文本字段。但是对于颠倒我的观点并没有改变,任何想法我们如何使用自动布局支持颠倒模式而不向您的视图控制器添加任何代码。我还在 xcode 的项目设置中检查了颠倒模式。
示例代码:- https://github.com/deepesh259nitk/OrientationSupport
屏幕截图如下。
最大值
您还需要在每个要支持倒置方向的视图控制器中覆盖 -supportedInterfaceOrientations
,因为默认情况下 returns UIInterfaceOrientationMaskAllButUpsideDown
上的 iPhone 方法。
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}
使用 xcode 6.3.2 中的自动布局功能,我可以调整 iPad 和 iPhone 的视图、按钮和文本字段。但是对于颠倒我的观点并没有改变,任何想法我们如何使用自动布局支持颠倒模式而不向您的视图控制器添加任何代码。我还在 xcode 的项目设置中检查了颠倒模式。
示例代码:- https://github.com/deepesh259nitk/OrientationSupport
屏幕截图如下。
最大值
您还需要在每个要支持倒置方向的视图控制器中覆盖 -supportedInterfaceOrientations
,因为默认情况下 returns UIInterfaceOrientationMaskAllButUpsideDown
上的 iPhone 方法。
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}