iOS15 tabbar变透明
if (@available(iOS 15.0, *)) {
UITabBarAppearance * appearance = [UITabBarAppearance new];
appearance.backgroundColor = [UIColor whiteColor];//设置背景颜色也可以
self.tabBar.scrollEdgeAppearance = appearance;
}
if (@available(iOS 15.0, *)) {
UITabBarAppearance * appearance = [UITabBarAppearance new];
appearance.backgroundColor = [UIColor whiteColor];//设置背景颜色也可以
self.tabBar.scrollEdgeAppearance = appearance;
}
发表回复