I\'m displaying badge on tab bar but when number increase it goes out to tab bar item like shown in image
Badge align to your tab bar image by default.If you add large image as tab bar item image you can adjust it's using following code.
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)
}
}
}