在我的应用中,当您使用以下代码摇动手机时,UI会淡入和淡出:
- (void)showButton:(UIButton*)xButton {
[UIView animateWithDuration:0.3
delay:0.0
options: UIViewAnimationCurveEaseInOut
animations:^{xButton.alpha = 1.0;}
completion:nil];
}
我也在使用此代码隐藏状态栏:
- (BOOL)prefersStatusBarHidden {return YES;}
但是,如何使用与其他UI相同的动画淡入和淡出状态栏?所有帮助赞赏。
编辑:虽然淡入淡出是理想的,但如果不可能,我将能够只是显示和隐藏状态栏("弹出"进出)。