在 Swift 中更改标签栏徽章大小



如何更改标签栏徽章大小?

我用位置设置标签栏徽章值

tabBarController?.tabBar.items?[4].badgeValue = "1"

但我无法更改红色圆圈标签栏徽章大小。

谢谢!

它正在工作

func addRedDotAtTabBarItemIndex(index: Int) {
    for subview in tabBarController!.tabBar.subviews {
        if let subview = subview as? UIView {
            if subview.tag == 1234 {
                subview.removeFromSuperview()
                break
            }
        }
    }
    let RedDotRadius: CGFloat = 5
    let RedDotDiameter = RedDotRadius * 2
    let TopMargin:CGFloat = 5
    let TabBarItemCount = CGFloat(self.tabBarController!.tabBar.items!.count)
    let screenSize = UIScreen.main.bounds
    let HalfItemWidth = (screenSize.width) / (TabBarItemCount * 2)
    let  xOffset = HalfItemWidth * CGFloat(index * 2 + 1)
    let imageHalfWidth: CGFloat = (self.tabBarController!.tabBar.items![index] as! UITabBarItem).selectedImage!.size.width / 2
    let redDot = UIView(frame: CGRect(x: xOffset + imageHalfWidth - 7, y: TopMargin, width: RedDotDiameter, height: RedDotDiameter))
    redDot.tag = 1234
    redDot.backgroundColor = UIColor.red
    redDot.layer.cornerRadius = RedDotRadius
        self.tabBarController?.tabBar.addSubview(redDot)
}

最新更新