1

我有一个最初使用 iphone 4 制作原型的应用程序。但是,当我在 iphone 5 或更高版本上显示它时,它会在顶部和底部留下黑色边框,如图所示。我怎样才能让它填满屏幕?使用尺寸检查器,我将 VC 和视图的屏幕高度设置为任意高的值,例如 2000,但这没有任何效果。我还尝试将顶部栏从推断更改为无,但没有任何效果。

感谢您的任何建议。

截屏

4

2 回答 2

2

使用大小类的自动布局。这是一个很好的教程 https://www.raywenderlich.com/113768/adaptive-layout-tutorial-in-ios-9-getting-started

基本上垂直间距是这里的问题。只需学习基本的自动布局的东西就可以解决这个问题

于 2017-05-01T20:57:29.187 回答
1

For your app, you need to define launch/splash screens for all supported devices. You can do this either using launch screen storyboard (preferred) or launch static images. Follow this -

https://developer.apple.com/ios/human-interface-guidelines/graphics/launch-screen/

When you create a new Xcode project, Xcode automatically puts launch screen storyboard for you but your project seems to be old so you need to put yourself.

于 2017-05-01T20:55:51.743 回答