0

在 ios7 中,状态栏发生了变化,它与我的视图重叠。我使用这种方法来防止这种情况。

    if([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)
    {

        self.automaticallyAdjustsScrollViewInsets = NO;
        self.extendedLayoutIncludesOpaqueBars = YES;
        self.edgesForExtendedLayout = UIRectEdgeNone;
    }

当我有导航栏时它可以工作,但是我将导航栏设置为隐藏,问题又来了。

4

1 回答 1

0

添加到您的 .plist 文件行:

View controller-based status bar appearance = NO

于 2013-11-12T12:16:29.730 回答