美文网首页
ios 13 设置导航栏背景和分割线颜色

ios 13 设置导航栏背景和分割线颜色

作者: seven_less | 来源:发表于2021-09-22 11:07 被阅读0次

if(@available(iOS13,*)) {

        UINavigationBarAppearance *appearance = [[UINavigationBarAppearance alloc]init];

        appearance.backgroundColor = [UIColor whiteColor];

        appearance.shadowColor = [UIColor clearColor];

        [UINavigationBar appearance].standardAppearance = appearance;

        [UINavigationBar appearance].scrollEdgeAppearance = appearance;

    }

相关文章

网友评论

      本文标题:ios 13 设置导航栏背景和分割线颜色

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