如何在iOS 7中使用动画隐藏状态栏?

时间:2013-10-04 15:41:07

标签: ios ios7 statusbar

自iOS 7推出以来,我无法像iOS 6一样显示或隐藏动画状态栏。 现在我使用NSTimer控制它何时隐藏。

这是我的代码:

- (void)hideStatusBar{
    _isStatusBarHidden=YES;
    [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
}
- (void)showStatusBar{
_isStatusBarHidden=NO;
[self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
}
    //===================
 _controlVisibilityTimer = [[NSTimer scheduledTimerWithTimeInterval:4 target:self selector:@selector(hideStatusBar:) userInfo:nil repeats:NO] retain];

但不幸的是,状态栏隐藏的方式看起来有点粗糙,没有消失。有人在那里有解决方案吗?

更新

我使用@hahaha解决方案解决了隐藏问题。我只需要一个视图作为状态栏的背景,这是我的代码。

AppDelegate* appDelegate = (AppDelegate*)[[UIApplication sharedApplication]delegate];

self.StatusBarOrange = [[UIView alloc] initWithFrame:CGRectMake(0, 0, appDelegate.window.frame.size.width, 20)];    
[self.StatusBarOrange setBackgroundColor:[UIColor orangeColor]];
[appDelegate.window.rootViewController.view addSubview:self.StatusBarOrange];

现在一切都很完美!

1 个答案:

答案 0 :(得分:33)

您需要致电

[UIViewController setNeedsStatusBarAppearanceUpdate];

来自动画块中,如下例所示:

@implementation SomeViewController {
    BOOL _statusBarHidden;
}

- (BOOL)prefersStatusBarHidden {
    return _statusBarHidden;
}

- (void)showStatusBar:(BOOL)show {
 [UIView animateWithDuration:0.3 animations:^{
        _statusBarHidden = !show;
        [self setNeedsStatusBarAppearanceUpdate];
    }];
}

@end