- (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
网友评论