动画效果隐藏和显示statusBar

2018-04-10  本文已影响25人  千_城
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    
    _isHidden = !_isHidden;
    
    [UIView animateWithDuration:0.5 animations:^{
        
        [self setNeedsStatusBarAppearanceUpdate];
    }];
    
}

- (UIStatusBarStyle)preferredStatusBarStyle {
    return UIStatusBarStyleLightContent;
}

// UIStatusBarAnimationFade: 慢慢变暗隐藏, UIStatusBarAnimationSlide: 向上滑动隐藏
- (UIStatusBarAnimation)preferredStatusBarUpdateAnimation {
    return UIStatusBarAnimationSlide;
}

- (BOOL)prefersStatusBarHidden {
    return _isHidden;
}
1.gif
上一篇 下一篇

猜你喜欢

热点阅读