在 ios7 中,状态栏发生了变化,它与我的视图重叠。我使用这种方法来防止这种情况。
if([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)
{
self.automaticallyAdjustsScrollViewInsets = NO;
self.extendedLayoutIncludesOpaqueBars = YES;
self.edgesForExtendedLayout = UIRectEdgeNone;
}
当我有导航栏时它可以工作,但是我将导航栏设置为隐藏,问题又来了。