iphone 5底部显示白色条带

时间:2012-11-21 17:07:49

标签: iphone objective-c xcode iphone-5

我的应用程序在iphone 4中工作正常但我的iphone 5显示在白色条带下方。我添加了 Default-568h.png也是问题,但问题仍然存在。我该怎么办?

enter code here

2 个答案:

答案 0 :(得分:1)

看起来您需要为视图设置调整大小的蒙版。确保在“界面”构建器中的“大小检查器”的“自动调整大小”部分中将其设置为按高度拉伸。如果您没有使用界面构建器,请在代码中正确设置蒙版。

编辑---

代码: 看autoResizingMask: http://developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview/uiview.html

界面构建器:

自动调整部分就是您想要的。

确保为视图设置了这样的蒙版。您还需要为任何控件设置外部栏。单击底部栏将告诉按钮例如粘在视图的底部。

enter image description here

答案 1 :(得分:0)

试试这个:

yourView.autoresizingMask =  UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleTopMargin ;