eggswift / ESTabBarController

:octocat: ESTabBarController is a Swift model for customize UI, badge and adding animation to tabbar items. Support lottie!
MIT License
5.17k stars 578 forks source link

如何给tabBar设置阴影呢,设置了几次都未成功 #262

Open sa124a opened 2 years ago

sa124a commented 2 years ago

网上的方法不适用

//移除顶部线条 self.tabBar.backgroundImage = [UIImage new]; self.tabBar.shadowImage = [UIImage new];

//添加阴影
self.tabBar.layer.shadowColor = [UIColor lightGrayColor].CGColor;
self.tabBar.layer.shadowOffset = CGSizeMake(0, -5);
self.tabBar.layer.shadowOpacity = 0.3;
maqiqing commented 2 years ago

iOS15是用 UITabBarAppearance().shadowImage 吧?