LemonCC

Results 2 comments of LemonCC

在 TabBarController 类中添加以下代码 ``` if (@available(iOS 13.0, *)) { UITabBarAppearance *standardAppearance = [[UITabBarAppearance alloc] init]; standardAppearance.backgroundColor = [UIColor whiteColor]; standardAppearance.shadowImage = [UIImage imageNamed:@"TabBar_Shadow"]; self.tabBar.standardAppearance = standardAppearance; } ```