如何调整标签栏徽章位置?

时间:2014-06-16 04:52:29

标签: ios objective-c uitabbarcontroller uitabbaritem

我在标签栏上显示徽章,但是当数字增加时,它会转到标签栏项目,如图所示

this image

我想稍微向左移动徽章视图,使其适合选定的标签图像。我按照here所述尝试但没有运气。 那么有没有办法调整徽章视图位置?任何帮助将不胜感激。

6 个答案:

答案 0 :(得分:7)

我发现Kateryna的答案对于让我走上正轨非常有用,但我不得不稍微更新一下:

func repositionBadge(tab: Int){

    for badgeView in self.tabBarController!.tabBar.subviews[tab].subviews {

        if NSStringFromClass(badgeView.classForCoder) == "_UIBadgeView" {
            badgeView.layer.transform = CATransform3DIdentity
            badgeView.layer.transform = CATransform3DMakeTranslation(-17.0, 1.0, 1.0)
        }
    }

}

请注意,标签整数不是零索引,因此第一个标签将是数字1,第二个标签是2,等等。

答案 1 :(得分:5)

更新徽章值时,请添加以下方法:

func updateBadge(#value: UInt, tabBarItemTag: Int) {
     self.viewControllerForTag(tabBarItemTag)?.tabBarItem.badgeValue = value
     for badgeView in (tabBar.subviews[tabBarItemTag] as! UIView).subviews {
         let className = "\(_stdlib_getDemangledTypeName(badgeView))"
         if className.rangeOfString("BadgeView").location != NSNotFound {
             badgeView.layer.transform = CATransform3DIdentity
             badgeView.layer.transform = CATransform3DMakeTranslation(0.0, 10.0, 20.0)
         }
     }
}

您需要使用第二个CATransform3DMakeTranslation来进行正确定位。在此代码中,徽章在底部/左侧移动一点。首先需要CATransform3DMakeTranslation来假装徽章移动。它是一个 Swift 代码,但您可以轻松地将其转换为Objective-C。

答案 2 :(得分:2)

默认情况下,徽章与标签栏图像对齐。如果您将大图像添加为标签栏项目图像,则可以使用以下代码进行调整。

for tabBarButton in self.tabBar.subviews{
        for badgeView in tabBarButton.subviews{
        var className=NSStringFromClass(badgeView.classForCoder)
            if  className == "_UIBadgeView"
            {
                badgeView.layer.transform = CATransform3DIdentity
                badgeView.layer.transform = CATransform3DMakeTranslation(-17.0, 1.0, 1.0)
            }
        }
    }

答案 3 :(得分:2)

在Objective-C中:

    for (UIView *tabBarButton in self.navigationController.tabBarController.tabBar.subviews)
    {
        for (UIView *badgeView in tabBarButton.subviews)
        {
            NSString *className = NSStringFromClass([badgeView class]);

            // Looking for _UIBadgeView
            if ([className rangeOfString:@"BadgeView"].location != NSNotFound)
            {
                badgeView.layer.transform = CATransform3DIdentity;
                badgeView.layer.transform = CATransform3DMakeTranslation(-5.0, 1.0, 1.0);
            }
        }
    }

答案 4 :(得分:0)

在C#Xamarin中

void RepositionBadge(int tab)
{
    foreach (var badgeView in TabBar.Subviews[tab].Subviews)
    {
        if (badgeView.Class.Name == "_UIBadgeView")
        {
            badgeView.Layer.Transform = CATransform3D.Identity;
            badgeView.Layer.Transform = CATransform3D.MakeTranslation(-10.0f, 1.0f, 1.0f);
        }
    }
}

答案 5 :(得分:0)

迅速4、5

我为UITabBar创建了一个扩展名,该扩展名可以快速获得徽章视图和徽章标签:

extension UITabBar {
    func badgeViewForItem(at index: Int) -> UIView? {
        guard subviews.count > index else {
            return nil
        }
        return subviews[index].subviews.first(where: { NSStringFromClass($0.classForCoder) == "_UIBadgeView" })
    }

    func labelForItem(at index: Int) -> UILabel? {
        guard subviews.count > index else {
            return nil
        }
        return badgeViewForItem(at: index)?.subviews.first(where: { $0 is UILabel }) as? UILabel
    }
}

然后您可以执行以下操作:

let firstItemBadgeView = badgeViewForItem(at: 0)!
// Do something with the badge view like setting the border, background color ...
// ex: firstItemBadgeView.backgroundColor = UIColor.clear