#pragma mark - UINavigationControllerDelegate
-(void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
BOOL isShowBar = [viewController isKindOfClass:[self class]];
[self.navigationController setNavigationBarHidden:isShowBar animated:YES];
}
网友评论