我正在尝试开发一个涉及 TextView 的应用程序。如果我使用 4 英寸尺寸,它会在 3.5 英寸设备上超出屏幕。如果我将大小更改为 3.5 英寸,修复它并将其更改回 4 英寸, TextView 上方会有这个大而丑陋的间隙。
我认为解决这个问题的方法是使用多个 View Controller 。一个用于 3.5 英寸,一个用于 4 英寸。但是我该怎么做呢?我正在使用 Xcode 5,为 iOS 7 开发并在 iPhone 4 上进行测试。
谢谢,
罗马式
Best Answer-推荐答案 strong>
您不必使用两个 View Controller 。您只需要一些 Auto Layout Constraints 或 autosizing 掩码来调整 View 以适应不同的屏幕尺寸。以下是一些有用的链接。
关于自动布局的教程:
第 1 部分: http://www.raywenderlich.com/20881/beginning-auto-layout-part-1-of-2
第 2 部分: http://www.raywenderlich.com/20897/beginning-auto-layout-part-2-of-2
在 Interface Builder 中使用约束
https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/WorkingwithConstraints/WorkingwithConstraints.html#//apple_ref/doc/uid/TP40010853-CH8-SW1
Apple 自动布局指南 https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/Introduction/Introduction.html
关于如何为 4 英寸和 3.5 英寸屏幕设置自动布局约束的类似问题
Resize view with Auto Layout between 3.5 and 4 inch form factor
关于ios - 多 View Controller - iOS 7,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/18929652/
|