在您看来,这可能是一个奇怪的问题,但我仍然面临很多问题。我有一个在 ios6 中开发的应用程序,现在我必须将它迁移到 ios7。有几个问题:应用程序的所有视图都向上移动,应用程序底部还有空间。剩下的空间等于状态栏。表视图WrapperClass 有错误。
帮帮我。
可能您正在使用其中之一: UINavigatopnBar OR UITabBarController
:
如果是这样,请尝试使用半透明并在检查器中取消选中这些(在顶部栏下方和底部栏下方)
I had the same problem. In my app I position most UI elements programaticaly:
In ios7 views always the property wantsFullScreen
is true, where in ios6 it is false by default. So in ios7 postion 0 is at the top of the status Bar, where in ios6 it is below the status bar.
Just add an constant - the height of the status bar - to all y coordinates.
For UI elements positioned in XIB via UI Builder try the answer of Kumar KI