美文网首页
iOS15 - 导航栏颜色变成透明的了

iOS15 - 导航栏颜色变成透明的了

作者: HanZhiZzzzz | 来源:发表于2022-02-11 14:42 被阅读0次
     UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:homeVC];
             UINavigationBarAppearance *appearance =[UINavigationBarAppearance new];
             [appearance configureWithOpaqueBackground];
             appearance.backgroundColor =  WhiteColor;
             nav.navigationBar.standardAppearance = appearance;
             nav.navigationBar.scrollEdgeAppearance = nav.navigationBar.standardAppearance;
         self.window.rootViewController = nav;
    

    相关文章

      网友评论

          本文标题:iOS15 - 导航栏颜色变成透明的了

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