1 2 3 4 5 6 7 8 9
| if (@available(iOS 13.0, *)) { UITabBarAppearance *appearance = [UITabBarAppearance new]; appearance.backgroundColor = [UIColor clearColor]; appearance.backgroundImage= [UIImage new]; appearance.shadowColor = [UIColor clearColor]; appearance.shadowImage= [UIImage new]; self.tabBar.standardAppearance = appearance; }
|