正如您从我的图片中看到的那样,状态栏显示在我的表格视图之上,我不明白为此我做错了什么。我相信这将是一个简单的修复,我只是错过了它。
非常感谢任何帮助,谢谢!
答案 0 :(得分:1)
您可以通过在ViewDidLoad方法中编写以下代码来避免此问题...
float SystemVersion=[[[UIDevice currentDevice] systemVersion] floatValue];
if(SystemVersion<7.0f)
{
//Currently your app is running in IOS6 or older version. So you need not to do anything.
}
else
{
// Currently your app is running in IOS7. Do the following.
CGRect TempRect;
for(UIView *sub in [[self view] subviews])
{
TempRect=[sub frame];
TempRect.origin.y+=20.0f; //Height of status bar
[sub setFrame:TempRect];
}
}
让我知道这是否有效我的朋友!!!
快乐编码!!!!
答案 1 :(得分:0)
像这样..在自定义栏的自动调整...只连接到上侧....
让我知道它的工作与否!!!
快乐编码!!