美文网首页
适配iOS15导航栏,导航栏空白, 修改导航栏文字颜色

适配iOS15导航栏,导航栏空白, 修改导航栏文字颜色

作者: 不要虚度美好的时光 | 来源:发表于2022-11-04 23:36 被阅读0次

    适配iOS15导航栏,导航栏空白, 修改导航栏文字颜色:

        if (@available(iOS 15.0, *)) {
            UINavigationBarAppearance *barApp = [UINavigationBarAppearance new];
            barApp.backgroundColor = [UIColor colorWithHexString:themeColorStr];
    //        barApp.shadowColor = [UIColor whiteColor];
            
            NSDictionary *dic = @{NSForegroundColorAttributeName : [UIColor whiteColor],
                                      NSFontAttributeName : [UIFont systemFontOfSize:AdaptedWidth(18) weight:UIFontWeightMedium]};
            
            barApp.titleTextAttributes = dic;
            
            UINavigationBar.appearance.standardAppearance = barApp;
            UINavigationBar.appearance.scrollEdgeAppearance = barApp;
        }
    

    相关文章

      网友评论

          本文标题:适配iOS15导航栏,导航栏空白, 修改导航栏文字颜色

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