在ios 7中呈现模型视图控制器时状态栏问题

时间:2013-10-12 06:57:01

标签: iphone ios ios7 statusbar navigationbar

我已经回来了

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];

    RootViewController *rvc = [[[RootViewController alloc] init] autorelease];
    UINavigationController *navController = [[[UINavigationController alloc] initWithRootViewController:rvc] autorelease];

    self.window.rootViewController = navController;
    [self.window makeKeyAndVisible];
    return YES;

}

View controller-based status bar appearance  is  YES in plist file

当我推动视图控制器状态栏看起来很棒。如下图所示。

enter image description here

但是当我呈现modelviewcontroller时,它看起来如下。

enter image description here

我在viewcontroller的viewDidLoad方法中编写了以下代码,我正在介绍

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
    // iOS 7
    navBar.frame = CGRectMake(navBar.frame.origin.x, 20, navBar.frame.size.width, 44);
}

我想在呈现模型时显示黑色状态栏。但它没有显示。 我试过

在plist文件中查看基于控制器的状态栏外观也为NO 但它没有用。

我的代码在7.0以下的所有ios版本中都运行良好,但在ios 7.0及更高版本中却没有。

任何解决方案?如果有人没有提出我的问题,请告诉我。

1 个答案:

答案 0 :(得分:4)

this question中找到了很好的解决方案。

1)在info.plist中将UIViewControllerBasedStatusBarAppearance设置为NO(要选择不让视图控制器调整状态栏样式,以便我们可以使用UIApplicationstatusBarStyle方法设置状态栏样式。)

2)在AppDelegate的应用程序中:didFinishLaunchingWithOptions,调用

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
    [application setStatusBarStyle:UIStatusBarStyleLightContent];
    self.window.clipsToBounds =YES;
    self.window.frame =  CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);

    self.window.bounds = CGRectMake(0, 20, self.window.frame.size.width, self.window.frame.size.height);
}
return YES;