設(shè)定一個(gè)變量,實(shí)現(xiàn)導(dǎo)航欄的滾動和隱藏(變量的set方法中實(shí)現(xiàn))
- (void)setIsExpand:(BOOL)isExpand
{
[UIView animateWithDuration:0.25 delay:0.0 usingSpringWithDamping:0.4 initialSpringVelocity:10.0 options:UIViewAnimationOptionTransitionCurlUp animations:^{
[self.view layoutIfNeeded];
} completion:^(BOOL finished) {
self->_isExpand = isExpand;
}];
[self.navigationController setNavigationBarHidden:!isExpand animated:YES];
pragma clang diagnostic push
pragma clang diagnostic ignored"-Wdeprecated-declarations"
[[UIApplication sharedApplication] setStatusBarHidden:!isExpand withAnimation:NO];
pragma clang diagnostic pop
}