美文网首页
iOS去掉导航栏下方的横线

iOS去掉导航栏下方的横线

作者: MQ_Twist | 来源:发表于2017-11-27 09:17 被阅读26次

    viewWillAppear 方法中敲以下代码:

    - (void)viewWillAippear:(BOOL)animated {
        [super viewWillAppear:animated];
    
        //去除导航栏下方的横线
        [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init]
            forBarMetrics:UIBarMetricsDefault];
        [self.navigationController.navigationBar setShadowImage:[[UIImage alloc] init]];
    }
    

    相关文章

      网友评论

          本文标题:iOS去掉导航栏下方的横线

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