iOS去除导航栏和tabbar的横线
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS去除导航栏和tabbar的横线相关的知识,希望对你有一定的参考价值。
导航
[self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setShadowImage:[UIImage new]];
导航透明设置
[self.navigationController.navigationBar setTranslucent:NO];
tab
[self.tabBarController.tabBar setBackgroundImage:[UIImage new]];
[self.tabBarController.tabBar setShadowImage:[UIImage new]];
以上是关于iOS去除导航栏和tabbar的横线的主要内容,如果未能解决你的问题,请参考以下文章
iOS-导航栏、状态栏及Tabbar高度(区分iPhone X与其他iPhone机型)