我在 UINavigationController 中有一个 ViewController。导航栏是隐藏的。
我不希望状态栏覆盖视图。
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
self.edgesForExtendedLayout = UIRectEdgeNone;
这在隐藏导航栏的情况下没有起到作用。
谁能向我提供有关如何执行此操作的信息?
我的应用需要支持 iOS6 和 iOS7。