除自动布局之外的任何其他调整视图大小的方法

时间:2015-05-15 05:42:03

标签: ios autolayout autoresizingmask

我正在构建一个专门为iPhone设计的应用程序,它只有一个纵向视图。我之前从未使用过autolayout,我认为现在没有时间学习它。我可以使用其他任何东西,让我的观点为设备调整大小(iphone 4s,5 / 5s,6/6 +)吗?

1 个答案:

答案 0 :(得分:3)

删除autolayout和sizeclasses

enter image description here

并使用自动调整表单实用程序

enter image description here

你也可以通过代码来完成:

view.autoresizingMask = (UIViewAutoresizingFlexibleWidth |    
                              UIViewAutoresizingFlexibleLeftMargin);