Swift tabbar样式设置

前端之家收集整理的这篇文章主要介绍了Swift tabbar样式设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

UITableBarController是经常使用的

tabbar的背景颜色默认是半透明的好像

swift2.x


UITabBar.appearance().translucent = false; //避免受默认的半透明色影响,关闭

UITabBar.appearance().barTintColor = UIColor.whiteColor()//设置背景颜色

UITabBar.appearance().tintColor = UIColor.yellowColor()//设置选中的背景颜色

UITabBar.appearance().clipsToBounds = true;//去掉上面的分割线


注意:网上有下面这种设置背景颜色的方式。我试了,貌似没效果不知道为什么。还是用上面的方式吧

UITabBar.appearance().backgroundColor=UIColor(red:255/255,green:0/255,blue:0/255,alpha:1)//设置为红色,不透明

原文链接:https://www.f2er.com/swift/322403.html

猜你在找的Swift相关文章