iOS15 - 导航栏颜色变成透明的了
2022-02-11 本文已影响0人
HanZhiZzzzz
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;