Border Color Issue in UILabel

452 Views Asked by At

Navigation Item background color is Theme.maroonColor

I am using https://github.com/mikeMTOL/UIBarButtonItem-Badge for Badge in UIBarButtonItem.

When I set

menuButton.badgeBGColor = UIColor(red: 242/255, green: 241/255, blue: 182/255, alpha: 1.0)
menuButton.badge.layer.borderWidth = 2
menuButton.badge.layer.borderColor = Theme.maroonColor.cgColor
menuButton.badgeFont = UIFont(name: "HelveticaNeue-Bold", size: 12)
menuButton.shouldHideBadgeAtZero = true
menuButton.badgeTextColor = Theme.maroonColor

after the border color there is a line in the border which color is same as background color of badge's background. Its weird issue I never faced this before and don't know how to search this issue.

enter image description here

0

There are 0 best solutions below