ios 7中的ScrollView UI问题

时间:2013-12-18 05:25:15

标签: objective-c ios6 ios7 scrollview

我是ios 7的新手。我必须创建一个支持iPhone版本ios的{​​{1}}应用。我创建了一个6.0,我正在使用Empty Application来设计StoryBoard

enter image description here

这是UI's中生成的屏幕。在横向模式下,设计是:

enter image description here

我无法看到字段Firstname及其ios 6.1.3。我没有使用过AutoLayout.Here是xib中的设计视图。

enter image description here

它应该支持横向和纵向。我怎么能这样做?

在ios 7中,模拟器中的相同UI是:

enter image description here

请帮我解决这个UI问题...

2 个答案:

答案 0 :(得分:1)

您必须取消选中Adjust ScrollView Insets,以解决不显示firstname文本字段的问题。

enter image description here

并且您的其他问题将通过使用自动布局来解决。

答案 1 :(得分:1)

您需要将每个视图控制器设置为适用于iOS7版本的edgesForExtendedLayout = UIRectEdgeNone。如果设置此项,则组件对齐将适用于iOS6版本。

希望这可能会有所帮助