ios中的自动旋转问题

时间:2014-01-15 05:35:52

标签: ios iphone ipad xcode5

我正在使用自动布局在xcode 5.i中开发ios 7的自定义应用程序。我有一个故事板的场景如下。它处于potrait模式。 enter image description here

当我将其旋转到横向模式时,它变为如下 enter image description here

我希望风景图像如下。 enter image description here

我怎样才能实现这一目标?

2 个答案:

答案 0 :(得分:0)

有简单的自动布局功能,可帮助您按照自己的意愿制作视图。

对于左侧的视图,请从Editor \ Pin菜单中选择: Superview的顶级空间 超级视野的领先空间 对于右侧视图,请选择: Superview的顶级空间 Superview的尾随空间 而对于底部的大观点: 超级视野的领先空间 Superview的尾随空间 底层空间到超级视图

如果您想学习自动布局,那么有一个很好的教程http://www.raywenderlich.com/50317/beginning-auto-layout-tutorial-in-ios-7-part-1

答案 1 :(得分:0)

从你的问题我得到你想要使红色视图大小和原点在轮换后不会改变。

在autolayout中使用width,height,left和top。它使红色视图位置始终位于左上角,而不更改任何大小。

enter image description here

结果如下:

轮换前

enter image description here

轮换后

enter image description here