美文网首页
隐藏显示导航

隐藏显示导航

作者: super_2e20 | 来源:发表于2020-05-19 11:00 被阅读0次
  • (void)hideNavigationBar:(BOOL)hideNav {
    if (hideNav) {
    self.navigationController.navigationBar.translucent = YES;
    [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
    [self.navigationController.navigationBar setShadowImage:[UIImage new]];
    [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont boldSystemFontOfSize:17]}];

    } else {
    self.navigationController.navigationBar.translucent = NO;
    self.navigationController.navigationBar.hidden = NO;
    [self.navigationController.navigationBar setBackgroundImage:nil forBarMetrics:UIBarMetricsDefault];
    [self.navigationController.navigationBar setShadowImage:nil];
    [self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName:TSTFont(17),NSForegroundColorAttributeName:HEXRGBCOLOR(0x4A4A4A)}];

    }
    }

相关文章

网友评论

      本文标题:隐藏显示导航

      本文链接:https://www.haomeiwen.com/subject/xeivohtx.html