How to adjust tab bar badge position?

前端 未结 6 1881
鱼传尺愫
鱼传尺愫 2021-01-12 07:57

I\'m displaying badge on tab bar but when number increase it goes out to tab bar item like shown in image

\"this

6条回答
  •  [愿得一人]
    2021-01-12 08:17

    In 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);
            }
        }
    }
    

提交回复
热议问题