iOS TabBar添加阴影

Posted 神来芒果

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS TabBar添加阴影相关的知识,希望对你有一定的参考价值。

效果图如下所示:

 





直接上代码

//移除顶部线条
    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;

 

以上是关于iOS TabBar添加阴影的主要内容,如果未能解决你的问题,请参考以下文章

iOS - 在 UITabBar 上方获得所需的阴影

Cg入门17:Fragment shader - 片段级光照(添加阴影)

css有用的代码片段

去掉tabbar顶部的阴影线

如何向 Xamarin Forms App Shell Tabbar 添加顶部边框

IOS给UIButton添加阴影