NSDictionary *titleTextAttributes = @{NSFontAttributeName:LYBoldFont(17), NSForegroundColorAttributeName:[UIColor whiteColor]};
///控制导航栏的背景颜色和底部线的隐藏
if (@available(iOS 13.0, *)) {
UINavigationBarAppearance *appearance = [UINavigationBarAppearance new];
[appearance configureWithOpaqueBackground];//重置导航栏背景颜色和阴影
appearance.backgroundColor = [UIColor clearColor];
appearance.shadowImage = [UIImage new];
appearance.shadowColor = nil;
appearance.titleTextAttributes = titleTextAttributes;
self.navigationBar.standardAppearance = appearance;
self.navigationBar.scrollEdgeAppearance = appearance;
} else {
// Fallback on earlier versions
self.navigationBar.barTintColor = [UIColor clearColor];
[self.navigationBar setTitleTextAttributes:titleTextAttributes];
[self.navigationBar setShadowImage:[UIImage new]];
[self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
}
iOS开发iOS13以后修改导航栏的背景颜色和导航栏底部的线
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 方法1 (单页面设置) 如果不想影响其他页面的导航透明度,viewWillDisappear将其设置为nil即可:...
- 当设置 属性的时候,我们会发现颜色是有偏差的,是因为有一层毛玻璃效果视图,可以设置 取消毛玻璃效果。但是设置后会发...