美文网首页ios积累
ios最完美的隐藏导航栏

ios最完美的隐藏导航栏

作者: 凤鹃一鸣 | 来源:发表于2016-12-09 16:54 被阅读68次

    使用代理隐藏当前控制器的导航栏    <UINavigationControllerDelegate>

    self.navigationController.delegate = self;

    //隐藏导航栏,将要显示控制器

    - (void)navigationController:(UINavigationController*)navigationController willShowViewController:(UIViewController*)viewController animated:(BOOL)animated {

    //判断要显示的控制器是否是自己

    BOOL isShowHomePage = [viewController isKindOfClass:[self class]];

    [self.navigationController  setNavigationBarHidden:isShowHomePage animated:YES];

    }

    相关文章

      网友评论

        本文标题:ios最完美的隐藏导航栏

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