美文网首页iOS随记
iOS 导航栏设置透明,显示底部视图

iOS 导航栏设置透明,显示底部视图

作者: valiant_xin | 来源:发表于2018-07-31 15:45 被阅读43次

    //设置导航栏透明
    [self.navigationController.navigationBar setTranslucent:true];
    //把背景设为空
    [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
    [self.navigationController.navigationBar setBackgroundColor:[UIColor clearColor]];
    //处理导航栏有条线的问题
    [self.navigationController.navigationBar setShadowImage:[UIImage new]];

    相关文章

      网友评论

        本文标题:iOS 导航栏设置透明,显示底部视图

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