How to change UITabBarItem Badge position?

前端 未结 3 464
傲寒
傲寒 2021-01-19 10:08

This is how my Tabbar is looking right now.

How do I move that badge so that it overlaps the top right of the bell icon? Any help is appreciated.

3条回答
  •  一生所求
    2021-01-19 10:52

    try this:

    func repositionBadge(tabIndex: Int){
    
        for badgeView in self.tabBarController!.tabBar.subviews[tabIndex].subviews {
    
            if NSStringFromClass(badgeView.classForCoder) == "_UIBadgeView" {
                badgeView.layer.transform = CATransform3DIdentity
                badgeView.layer.transform = CATransform3DMakeTranslation(-17.0, 1.0, 1.0)
            }
        }
    }
    

    pay attention, tabIndex starts from 1

提交回复
热议问题