动画效果隐藏和显示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;
}
![](https://img.haomeiwen.com/i1879151/18efe5536b4aed8e.gif)