编辑特定标签栏项目的背景颜色

Edit background color of specific Tab bar item

嘿,我想更改中心标签栏项目的背景颜色,例如 swift 中的 instagram,任何知道它是如何工作的人。我用谷歌搜索但找不到任何有用的答案。

您可以使用以下代码:

// Add background color to middle tabBarItem
let itemIndex = 2
let bgColor = UIColor(red: 0.08, green: 0.726, blue: 0.702, alpha: 1.0)

let itemWidth = tabBar.frame.width / CGFloat(tabBar.items!.count)
let bgView = UIView(frame: CGRectMake(itemWidth * itemIndex, 0, itemWidth, tabBar.frame.height))
bgView.backgroundColor = bgColor
tabBar.insertSubview(bgView, atIndex: 0)

作为参考,您可以查看这些 Whosebug 帖子:

  • Change background Color of One UITabBarItem

根据需要更改 tabBarItem 的背景颜色或使用背景图像并更改比赛